body {
  background: #302f34;
  position: relative;
  color: white;
  min-height: 100vh;
}

.bg {
  opacity: 0.15;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;   
}


@keyframes fadeIn {
  from {top: 20%; opacity: 0;}
  to {top: 100; opacity: 1;}
  
}

@-webkit-keyframes fadeIn {
  from {top: 20%; opacity: 0;}
  to {top: 100; opacity: 1;}

}

.wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

@media (max-width: 640px){
    .wrapper {
        padding-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
        position: relative;
        top: initial;
        left: initial;
        transform: none;
        animation: none;
        -webkit-animation: none;
    }
}

h1 {
  font-size: 50px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0;
  line-height: 1;
  font-weight: 700;
  text-shadow: 0px 1px 2px 0px #000;
}

h2 {
    font-family: 'Poppins', sans-serif;
    text-shadow: 0px 1px 2px 0px #000;
}

span {
    font-family: 'Poppins', sans-serif;
    text-shadow: 0px 1px 2px 0px #000;
}

p {
  text-align: center;
  margin: 18px;
  font-family: 'Muli', sans-serif;
  font-weight: normal;
  
}

.logo {
    margin-top: 32px;
    margin-bottom: 32px;
}

.icons {
  text-align: center;
  
}

.icons i {
  color: #fff;
  background: #000;
  height: 15px;
  width: 15px;
  padding: 13px;
  margin: 0 10px;
  border-radius: 50px;
  border: 2px solid #000;
  transition: all 200ms ease;
  text-decoration: none;
  position: relative;
}

.icons i:hover, .icons i:active {
  color: #fff;
  background: none;
  cursor: pointer !important;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  text-decoration: none;
  
}