/* <div class="merch_container">
<h1>Merchandise</h1>
<div class="merch_products">
  <div class="Merchandise_product">
    <img src="Merch/Merch_1.png" alt="" />
  </div> */

.merch_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
  align-items: center;
  margin: 8rem 0rem;
}

.merch_container button {
  outline: none;
  border: none;
  background-color: var(--Navy_main);
  color: var(--White_main);
  padding: 1rem 2rem;
  cursor: pointer;
  margin-top: 3rem;
  font-family: Lato-Reg;
  /* transition: 0.1s ease; */
}

/* .merch_container button:hover {
  color: var(--Orange_main);
  transition: 0.1s ease;
  transform: scale(1.005);
} */

.merch_container h1 {
  font-family: Bebas;
  color: var(--Navy_main);
  font-size: 6rem;
}

.merch_products {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.Merchandise_product img {
  width: auto;
  height: 25rem;
  margin: 2rem 2rem;
  transition: 0.5 ease;
  border-radius: 2px;
  cursor: pointer;
}

.Merchandise_product img:hover {
  opacity: 0.9;
  transition: 0.5 ease;
  transform: scale(1.011);
}

@media only screen and (max-width: 1020px) {
}

@media only screen and (max-width: 1050px) {
  .merch_container h1 {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 800px) {
  .merch_container h1 {
    font-size: 3.5rem;
  }
}
