/* Overall Page Styles */
body {
  background-color: midnightblue; /* Sky Blue background */
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #FFF; /* White background for content */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Header Styles */
.header {
  font-size: 50px;
  color: #333; /* Dark gray text color */
  margin: 20px 0;
  font-weight: bold;
}

h1 {
  line-height: 1.5em;
}

/* Moon Styles */
.moon {
  background-image: url(moon.jpg);
  height: 250px;
  background-size: cover;
  margin-left: -20px;
  margin-right: -20px;
}

/* Animal Images Styles */
.animal {
  width: 150px;
  height: 150px;
  margin: 10px;
  border-radius: 50%; /* Circular shape for animals */
}

/* Nature Background Styles */
.nature-background {
  background-image: url('nature.jpg'); /* You should replace 'nature.jpg' with your nature image */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Fixed background for a parallax effect */
  color: #333; /* White text color for contrast */
  padding: 20px;
}

/* Main Content Styles */
.story-text {
  font-size: 18px;
  line-height: 2em;
  text-align: left;
  margin: 20px;
  color: #333;
}

/* Footer Styles */
.footer {
  font-size: 16px;
  color: #666; /* Light gray text color */
  margin: 20px 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {

  .animal {
    width: 100px;
    height: 100px;
  }

  .story-text {
    font-size: 16px;
  }
}

