/* Reset default margins */
body, h1, p {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  background-color: #f9f9f9;
  color: #333;
}

/* Header styling */
header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Image styling */
.main-image {
  max-width: 80%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Text below the image */
main p {
  font-size: 1.2rem;
}
