body {
  
  color: #fff;
  background-image: url(bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  margin: 0;
}

body:before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, .8);
  z-index: 0;
}


@keyframes fadeIn {
  from {top: -50px; opacity: 0;}
  to {top: 0; opacity: 1;}
  
}

@-webkit-keyframes fadeIn {
  from {top: -50px; opacity: 0;}
  to {top: 0; opacity: 1;}
  
}

.container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.wrapper {
  position: relative;
  animation: fadeIn 1000ms ease;
  -webkit-animation: fadeIn 1000ms ease;
  padding-top: 4rem;
  
}

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

.dot {
  color: #F29104;
}

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

.logo {
  width: 150px;
  margin-top: 30px;
}

.icons {
  text-align: center;
  
}

.icons i {
  color: #00091B;
  background: #fff;
  height: 15px;
  width: 15px;
  padding: 13px;
  margin: 0 10px;
  border-radius: 50px;
  border: 2px solid #fff;
  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;
  
}