.background-div-2,
.background-div-home {
  /* Set the height and width of the div */
  height: 450px;
  /* width: 500px;*/

  /* Set the background image */
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0px;
  margin: 0px;
  background-color: #f0f0f0;
  background-position: right center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  /*background-attachment: fixed;*/
  transition: background-image 0.5s ease; /* Add a smooth transition effect */
  padding-left: 35px;
}

.background-div-2::after {
  content: "";
  flex-grow: 1;
  height: 50%;
}

/* For rows with more than one column */
.background-row {
  display: flex;
  justify-content: flex-start;
  flex-direction: row; /* Stack elements horizontally */
  align-items: left;
}

.background-row a {
  padding: 4px;
}

.main-content {
  max-width: 1000px; /* Set the maximum width */
  margin: 0 auto; /* Center the container */
}

.number-of-user-dropdown {
  max-width: 250px;
  font-size: 1rem;
  width: 100%;
}

.add-to-cart-button {
  width: 100%;
  max-width: 120px;
  margin-top: 20px;
}

.title {
  font-weight: bold;
}

@media (max-width: 576px) {
  .subtitle {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .title {
    font-size: 2.5rem;
    line-height: 1.1;
  }
}

@media (min-width: 577px) {
  .subtitle {
    font-size: 1.45rem;
    line-height: 1.45;
  }

  .title {
    font-size: 3rem;
    line-height: 1.45;
  }
}
