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

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background-color: #004271;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo {
  max-width: 300px;
  margin-bottom: 20px;
}

.coming-soon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-email {
  font-size: 1.1rem;
}

.contact-email a {
  color: #ffcc00;
  text-decoration: none;
}

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

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffcc00;
}
