@import url(https://fonts.googleapis.com/css?family=Exo:100);
body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.main_section {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.main_section h1 {
  font-size: 6.9vw;
  text-transform: uppercase;
  font-weight: 900;
  color: #0f507a;
}
.main_section h2 {
  font-size: 2.9vw;
  text-transform: capitalize;
  font-weight: 900;
}
.main_section h3 {
  font-size: 2.9vw;
  text-transform: uppercase;
  font-weight: 900;
  color: #0f507a;
}
.main_section h4 {
  font-size: 1.9vw;
  text-transform: lowercase;
  color: #0f507a;
  text-align: center;
}
.main_section h4 a {
  text-decoration: none;
  color: #303030;
}
.main_section h4 a svg {
  width: 5%;
  position: relative;
  top: 5px;
}
.main_section aside {
  width: 275px;
}
.main_section aside img {
  width: 100%;
}

/* Cool infinite background scrolling animation.
 * Twitter: @kootoopas
 */
/* Exo thin font from Google. */
/* Background data (Original source: https://subtlepatterns.com/grid-me/) */
/* Animations */
@-webkit-keyframes bg-scrolling-reverse {
  100% {
    background-position: 50px 50px;
  }
}
@keyframes bg-scrolling-reverse {
  100% {
    background-position: 50px 50px;
  }
}
@-webkit-keyframes bg-scrolling {
  0% {
    background-position: 50px 50px;
  }
}
@keyframes bg-scrolling {
  0% {
    background-position: 50px 50px;
  }
}
/* Main styles */
body {
  font: 400 16px/1.5 exo, ubuntu, "segoe ui", helvetica, arial, sans-serif;
  text-align: center;
  /* img size is 50x50 */
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAABnSURBVHja7M5RDYAwDEXRDgmvEocnlrQS2SwUFST9uEfBGWs9c97nbGtDcquqiKhOImLs/UpuzVzWEi1atGjRokWLFi1atGjRokWLFi1atGjRokWLFi1af7Ukz8xWp8z8AAAA//8DAJ4LoEAAlL1nAAAAAElFTkSuQmCC") repeat 0 0;
  -webkit-animation: bg-scrolling-reverse 0.92s infinite; /* Safari 4+ */ /* Fx 5+ */ /* Opera 12+ */
  animation: bg-scrolling-reverse 0.92s infinite; /* IE 10+ */
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@media screen and (min-width: 100px) and (max-width: 768px) {
  .main_section h4 {
    font-size: 2.9vw;
    text-transform: lowercase;
    color: #0f507a;
    text-align: center;
  }
  .main_section h4 a {
    text-decoration: none;
    color: #303030;
  }
  .main_section h4 a svg {
    width: 5%;
    position: relative;
    top: 5px;
  }
}/*# sourceMappingURL=style.css.map */