body {
  background: #00091B;
  color: #fff;
}

@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%);
  -webkit-transform: translate(-50%, -50%);
  animation: fadeIn 1000ms ease;
  -webkit-animation: fadeIn 1000ms ease;
  text-align: center;
}

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

.dot {
  color: #4FEBFE;
}

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

#MeshComingSoon {
  text-align: center;
}

.icons {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  gap: 60px;
  margin-top: 25px;
  width: 100%;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-item a {
  text-decoration: none;
  color: inherit;
}

.icon-item p {
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.icons i {
  color: #00091B;
  background: #fff;
  height: 15px;
  width: 15px;
  padding: 13px;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: all 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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