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

body {
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://cdn.glitch.global/4e8c79ef-6bfb-4542-a86a-935540fafe16/signal-2024-11-26-141926_002.jpeg?v=1732648872919");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 3rem;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 40px;
  transition: transform 0.3s ease;
}

.nav-links {
  text-decoration: none;
  color: #282a75;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-links:hover {
  color: #f38149;
  text-decoration: underline;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  margin-top: 60px;
}

.content-wrapper {
  background: rgba(255, 255, 255, 0.65);
  padding: 3.5rem 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: fadeIn 1s ease-out;
  max-width: 800px;
}

.construction-text {
  font-family: "Gotham Bold", sans-serif;
  font-size: 3.5rem;
  color: #282a75;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

.check-back {
  font-family: "Lobster", cursive;
  font-size: 2rem;
  color: #f38149;
  animation: fadeIn 1s ease-out;
  margin-bottom: 2rem;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 2rem;
  }

  .content-wrapper {
    padding: 2rem;
    margin: 1rem;
  }

  .construction-text {
    font-size: 2.5rem;
  }

  .check-back {
    font-size: 1.5rem;
  }
}
