body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f4f4f4; /* Background for the body */
}

header, .logo, main, footer {
  background-color: #fff; /* Common background color for logo, content, and footer */
}

header {
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

.logo img {
  max-width: 150px;
}

main {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.picture {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-bottom: 20px; /* Space below the image */
}

.picture img {
  max-width: 100%;
  height: auto;
}

.content p {
  font-size: 18px;
  color: #333;
  margin-top: 0; /* Optional: Remove default margin-top for the first paragraph */
}

footer {
  color: #333;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
