body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, rgba(24, 84, 136, .9), rgba(16, 19, 20, .4));
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-wrapper {
  text-align: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  animation: fadeIn 0.8s ease;
}

.logo {
  width: 350px;
  margin-bottom: 30px;
}

.title {
  font-size: 34px;
  font-weight: 500;
  color: #3d3d3d;
  margin-bottom: 10px;
}

.subtitle {
  color: #110228;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.5;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: #355585;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

.dots span:nth-child(2) {
  animation-delay: 0.3s;
}

.dots span:nth-child(3) {
  animation-delay: 0.6s;
}

.contact {
  margin-top: 75px;
  color: #3d3d3d;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
}

.contact:hover {
  text-decoration: underline;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    background: #355585;
  }

  50% {
    transform: scale(1.3);
    background: rgb(53, 85, 133, 0.7);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 400px) {
  .logo {
    width: 250px;
  }

  .title {
    font-size: 20px;
  }

  .subtitle {
    font-size: 14px;
  }
}