/* Reset default styles */
body, h1, h2, p, img, nav, footer {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

/* Base styles */
body {
  font-family: 'Source Serif Pro', serif;
  color: #333;
  line-height: 1.6;
  background: linear-gradient(to bottom, #0994ff, #35e7ff);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background-color: white;
  color: black;
  padding: 10px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
}

nav a {
  color: #0994ff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  font-size: 1rem;
  transition: text-decoration 0.3s ease; /* Smooth transition for the underline */
}

nav a:hover {
  text-decoration: underline; /* Underline on hover */
}

main {
  flex: 1;
  padding: 20px 10%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.intro h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: white;
  max-width: 600px;
}

.intro p {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 20px;
}

.waitlist {
  margin-top: 20px;
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer {
  background-color: white;
  color: #0994ff;
  text-align: center;
  font-style: oblique;
  padding: 10px 10%;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 10px 5%;
    flex-direction: column;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  nav a {
    margin-left: 10px;
    font-size: 0.9rem;
  }

  main {
    padding: 20px 5%;
  }

  .intro h1 {
    font-size: 2rem;
  }

  .intro p {
    font-size: 1.2rem;
  }

  .waitlist {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px 5%;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo img {
    height: 30px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  nav a {
    margin-left: 5px;
    font-size: 0.8rem;
  }

  main {
    padding: 15px 5%;
  }

  .intro h1 {
    font-size: 1.8rem;
  }

  .intro p {
    font-size: 1rem;
  }

  .waitlist {
    max-width: 100%;
  }
}
