body {
    background-color: #082B59;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    line-height: 2;
    /* establishes a white background */
}
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
  }
.main-bkgd {
    background: #ffffff url("gulp-bottom-beans.jpg") repeat-x bottom;
    padding-bottom: 300px;
    text-align: center;
}
/* make images flexible */
img {
    max-width: 100%;
  }
  a {
    color: #59331d;
  }
  a:hover {
    text-decoration: none;
  }
  header {
    border-bottom: 10px solid #d98555;
  }
  /* navbar styling */
nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  nav li {
    margin: 0 1rem 1rem 1rem;
    font-size: 1.3rem;
  }
  /* max width on the image in pixels */
nav .logo img {
    max-width: 150px;
  }
  /* flex basis on the image container, li */
nav .logo {
    flex-basis: 100%;
    text-align: center;
  }
  nav a {
    color: white;
    text-decoration: none;
    display: block;
  }
  nav a:hover {
    color: #d98555;
  }
  /* sits inside of the white background, centered */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
/* Container for products */
.container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}
/* Product styles */
.Product {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}
.Product img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.Product p {
  font-size: 1rem;
  line-height: 1.5;
  color: black;
  margin: 0;
  padding: 0 1rem;
}

footer {
  color: #f2f2f2;
  text-align: center;
  border-top: 10px solid #d98555;
  background-color: #122855; /* Navy blue background */
  text-align: center;
  padding: 20px 10px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 8px; /* Rounded corners */
  color: #122855;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.icon i {
  pointer-events: none; /* Ensures icons are clickable */
}

.icon:hover {
  transform: scale(1.1); /* Slight zoom effect */
}

p {
  font-size: 14px;
  margin: 0;
}