/* Reset some default styles */
body,
h1,
h2,
p {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  color: #333;
}

header {
  background-color: #007bff;
  color: white;
  text-align: center;
  padding: 20px 0;
}

h1 {
  font-size: 28px;
}

section {
  background-color: white;
  padding: 20px;
  margin: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  line-height: 1.5;
}

footer {
  text-align: center;
  margin-top: 20px;
  padding: 10px;
  background-color: #007bff;
  color: white;
}

/* Media query for responsiveness */
@media (max-width: 600px) {
  header h1 {
    font-size: 24px;
  }

  section {
    margin: 10px;
  }
}
