/* Base styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #00bae3;
  color: #333;
}

header {
  background-color: #01449b;
  color: white;
  padding: .5rem;
  text-align: center;
   font-family: 'Lora', serif;

}
/* Header styling with Great Vibes */

.byline {
  font-family: 'Great Vibes', cursive;
  font-size: 4em;
  color: white;
  text-align: center;
  margin: 0.5em 0;
}
.maintext {
  font-family: 'atma', cursive;
  font-size: 2em;
  color: white;
  text-align: left;
  margin: 0.5em 0;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;

}

/* Body text styling with Lora */
.body-text {
  font-family: 'Lora', serif;
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
}

   .questions {
      font-family: 'atma', cursive;
      font-size: 1.5em;
      padding: 20px;
      max-width: 600px;
      margin: auto;
    }



/* Responsive image styling */
.responsive-image {
  max-width: 100%;
  width: 600px;
  height: auto;
  display: block;
  margin: 1rem auto;
 
  border-radius: 8px;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0.5rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: bold;
}
nav ul li a:hover {
  color: #fdd947;
  text-decoration: none;
  font-weight: bold;
}
main {
  padding: 2rem;
}

footer {
  background-color: #00bae3;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: white;
}

/* Responsive styles */

/* Base styles for desktop */
@media (max-width: 1024px) {
  header, main, footer {
    padding: 1rem;
  }responsive-image {
    max-width: 600px;
  }

  .byline {
    font-size: 4em;
  }
}
/* Tablet screens (up to 768px) */
@media (max-width: 768px) {

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 0.3rem 0;
  }
   .byline {
    font-size: 2.8em;
  }
  img.responsive-image {
    max-width: 700px;
  }

}
/* Mobile phones (up to 480px) */

@media (max-width:550px) {
.byline {
  font-size: 1.7em;

}
  img.responsive-image {
    max-width: 100%;
    
  }
header {font-size:.7em;}
.maintext{font-size:1.5em ;}

}