/* Set general body styles */
  body {
  background: url("leo-001.jpg") no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  font-family: Georgia, serif;
}

/* 50px invisible header */
header, footer {
  height: 50px;
}

/* Main content container with padding and center alignment */
.container {
  padding: 20px;
  text-align: center;
}

/* Main logo styles */
.logo img {
  max-width: 300px;
  margin: 0 auto;
}

/* Paragraph styling */
.paragraph {
  background: rgba(255, 255, 255, 0.7);
  padding: 10px;
  margin: 0px auto;
  max-width: 600px;
  font-size: .8em;
  line-height: 1.5;
  border-radius: 8px;
}

/* Grid for product sections */
.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top:20px;
}

/* Each product card */
.product {
  background: rgba(255, 255, 255, 0.7);
  padding: 10px;
  max-width: 130px;
  border-radius: 8px;
}

/* Responsive images inside product cards */
.product img {
  max-width: 100%;
  height: auto;
}

/* Contact section styling */
.contact {
  margin-top: 40px;
  font-size: 1.1em;
}

/* Responsive behavior for smaller screens */
@media (max-width: 768px) {
  .product-grid {
    flex-direction: column;
    align-items: center;
  }
}
