body {
  background: #00091B;
  color: #fff;
  overflow-x: hidden;
}

/* ========== SNOWFLAKES ========== */
.snowflakes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -60px;
  color: #fff;
  animation: snowfall linear infinite;
  user-select: none;
  --drift: 40px;
}

@keyframes snowfall {
  0% {
    transform: translateY(-60px) translateX(0px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) translateX(var(--drift)) rotate(720deg);
    opacity: 0.25;
  }
}



@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -45%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

@-webkit-keyframes fadeIn {
  from { opacity: 0; -webkit-transform: translate(-50%, -45%); }
  to { opacity: 1; -webkit-transform: translate(-50%, -50%); }
}

.wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  width: 90%;
  max-width: 600px;
  text-align: center;
}

.brand {
  margin-bottom: 30px;
}

#logo {
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(79, 235, 254, 0.2));
}

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

.dot {
  color: #4FEBFE;
}

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

.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;
  
}