main {
    flex-grow: 1;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f7e7ce;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
}
header {
    background-color: #754b29;
    color: rgb(214, 206, 206);
    padding: 2rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}
section {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}
footer {
    background-color: #754b29;
    color: white;
    text-align: center;
    margin-top: 2rem;
    width: 100%;
    padding-bottom: 1em;
}

footer a {
    color: #f7e7ce;
    text-decoration: none;
    font-weight: bold;
}

.image {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 1.25rem 0;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(2,6,23,0.6);
}

.logo_img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.product_div {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: flex;
    text-align: left;
    align-items: center;
    margin-bottom: 5em;
}

.product_div p {
    margin: 1em;
    margin-top: 1rem;
}

@media (max-width: 768px) {
  .product_div {
    flex-direction: column;
    text-align: center;
  }

  .product_div p {
    margin: 1em;
    margin-top: 1rem;
  }

  .image {
    max-width: 100%;
  }
}