/* General Body Styles */
body {
  font-family: "Arial", sans-serif;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Header Styles */
h1,
h2,
h3 {
  text-align: center;
  color: #2c3e50;
}

h2 {
  color: #e74c3c;
  text-transform: uppercase;
  font-weight: bold;
}

/* Paragraph Styles */
p {
  font-size: 1.1;
  max-width: 800;
  margin: 20 auto;
  text-align: justify;
}

/* Image Styles */
img {
  border-radius: 10;
  margin: 10;
  box-shadow: 0 4 8 rgba(0, 0, 0, 0.1);
}

/* Image Container */
.image-container {
  display: inline-block;
  margin: 15;
  text-align: center;
}

/* Navigation Styles */
nav {
  background-color: #2c3e50;
  text-align: center;
  padding: 10;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 15x 15;
  margin: 0 10;
  font-weight: bold;
}

nav a:hover {
  background-color: #e74c3c;
  border-radius: 5;
}

/* Footer Styles */
footer {
  text-align: center;
  background-color: #34495e;
  color: white;
  padding: 20;
}

/* Responsive Design */
@media (max-width: 768) {
  h1 {
    font-size: 1.5;
  }

  .image-container {
    width: 100;
    margin: 10 0;
  }

  nav {
    font-size: 1.2;
  }
}
