body {
  background: #00091B;
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

.wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 20px;
  max-width: 90vw;
  box-sizing: border-box;
  animation: fadeIn 1000ms ease;
}

img {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  word-wrap: break-word;
}

.dot {
  color: #4FEBFE;
}

p {
  font-size: 1.2rem;
  margin: 1rem 0;
  font-family: 'Muli', sans-serif;
}

.icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.icons i {
  color: #00091B;
  background: #fff;
  height: 15px;
  width: 15px;
  padding: 13px;
  margin: 0 5px;
  border-radius: 50px;
  border: 2px solid #fff;
  transition: all 200ms ease;
}

.icons i:hover,
.icons i:active {
  color: #fff;
  background: none;
  transform: scale(1.2);
  cursor: pointer;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  p {
    font-size: 1rem;
  }

  img {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .icons i {
    padding: 10px;
    margin: 0 3px;
  }

  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.9rem;
  }
}
