* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.container {
  height: 100vh;
  width: 100vw;
  background-image: url('image.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  position: absolute;
  top: 100px;
  z-index: 2;
}

.logo img {
  width: 400px;
  height: 300px;
  object-fit: contain;
}

.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.coming-soon,
.main-title,
.footer-text {
  position: relative;
  z-index: 2;
}

.coming-soon {
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
  margin-top: 40px;
  text-align: center;
}

.main-title{
  font-family: Times New Roman, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 5rem;
  font-weight: 300;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  line-height: 1.1;
}

.footer-text {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 15px;
  font-size: 16px;
  color: white;
  text-align: center;
  margin-bottom: 40px;
  max-width: 90%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-text a {
  color: #87CEEB;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-text a:hover {
  color: #ADD8E6;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-title {
    font-size: 3rem;
    padding: 0 20px;
  }
  
  .coming-soon {
    font-size: 30px;

    margin-top: 30px;
  }
  
  .footer-text {
    font-size: 14px;
    padding: 15px 20px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 10vw;
  }
  
  .coming-soon {
    font-size: 6vw;
    padding: 8px 16px;
  }
  
  .footer-text {
    font-size: 13px;
    padding: 12px 15px;
  }

  .logo img {
    width: 80vw;
    height: 60vw;
  }
}