@keyframes button{
    from{color: black;}
    to{color: orangered;}
}
body
{
    /*font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-style: normal;*/
    margin: 0;
}
h1,h2,h3
{
    /*font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-style: normal;*/
    background: linear-gradient(to right,orange,aqua);
    background-clip: text;
    color: transparent;
}
h1
{
  text-align: center;
}

h3
{
  text-align: center;
}
h4
{
  text-align: center;
  color: green;
}
.div-h4
{
  font-size: 10px;
  color: brown;
  margin-top: -25px;
}
h5
{
  margin-top: -10px;
  text-align: center;
}
.div-header
{
  display: flex;
  margin-top: 50px;
}
.img-header
{
  width: 110px;
  height: 110px;
}
.div-box
{
  width: 100%px;
  height: 450px;
  display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 5px;
    margin-bottom: 10px;
  /*overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;*/
}
.div-a
{
    width: 45%; /* Hoặc bạn có thể sử dụng width: 50%; */
    flex-basis: calc(50% - 10px); /* Đảm bảo hai phần tử trên mỗi hàng */
    box-sizing: border-box; /* Đảm bảo padding và border không làm thay đổi kích thước */
    
  height: 100%;
  border: 1px solid white;
  border-radius: 10px;
  margin-right: 5px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);

}
.img-a
{
  width: 100%;
  height: 180px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.div-button-cart-a
{
  width: 70%;
  height: 40px;
    font-weight: 700;
    color: transparent;
  margin-top: 0px;
  margin-left: 15%;
  background: linear-gradient(to right,orangered,yellow);
  background-clip: text; 
    border: 1px solid white;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    }

.div-button-cart-a:hover{
    border: 1px solid linear-gradient(orangered,yellow);
    color: orangered;
}
.div-button-cart-b
{
  position: fixed;
  width: 100%;
  height: 40px;
  background: whitesmoke;
  border-radius: 10px;
  box-shadow: 1px 2px 3px;
  margin-top: -40px;
}

