* {
  margin: 0;
  padding: 0;
  font-family: Georgia, serif;
}

body {
  background: black;
}

.container {
  background: white;
  margin: 0 auto;
}

#wrapper {
  padding: 15px;
  position: relative;
}

#header {
  background: #4c70fb;
  display: flex;
  margin: 0 auto;
  padding: 10px 0;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 17px 0 rgb(0, 0, 0);
  position: relative;
  z-index: 20;
}
#header .logo {
  width: 40px;
  height: 40px;
  display: inline-block;
  background: white;
  border-radius: 50%;
}

.arrow-bottom {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #0f2ea9;
  position: absolute;
  z-index: 1;
}

.left {
  left: 15px;
}

.right {
  right: 15px;
}

.arrow-dub-wrap {
  position: relative;
  left: 15px;
  top: 10px;
}
.arrow-dub-wrap .arrow-logo {
  width: 0;
  height: 0;
  border-top: 0 solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #0f2ea9;
  position: absolute;
}

#content {
  padding: 50px 60px;
  border: 1px solid #ddd;
  margin: 0 15px;
  position: relative;
  z-index: 10;
  background: white;
  box-shadow: 3px 0 15px -4px rgba(31, 73, 125, 0.8), -3px 0 8px -4px rgba(31, 73, 125, 0.8);
}
#content .top {
  text-align: center;
  margin-bottom: 30px;
}
#content .top .title, #content .top .subtitle {
  text-transform: uppercase;
  font-weight: bold;
}
#content .top .title {
  font-size: 25px;
  margin-bottom: 25px;
}
#content .top .subtitle {
  font-size: 18px;
  margin-bottom: 10px;
}
#content .body p.article {
  margin-bottom: 20px;
  text-align: justify;
}
#content .body h3 {
  text-transform: uppercase;
  margin-bottom: 10px;
}

#footer {
  background: #728dfc;
  text-align: center;
  margin: 0 15px;
}
#footer p {
  padding: 20px;
  color: white;
  font-size: 23px;
}