*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: auto;
    background-color: #eee;
    font-family: sans-serif;
}
.box{
    width: 250px;
    height: 380px;
    background-color:#fff;
    margin-top: 10px;
}
.img img{
    width: 250px;
    height: 280px;
    object-fit: cover;
}
.img{
    position: relative;
}
.img button{
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 10px;
    color: #Fff;
    font-size: 11px;
    padding: 4px;
    border: 1px  black;
    border-radius: 5px;
    background-color: rgb(170,112,148);
    letter-spacing: 1px;
    font-weight: bold;
}
.img button:hover{
    background-color: rgb(172,91,140);
}

.box h3{
    font-size: 16px;
    margin-top: .5rem;
    letter-spacing: 2px;
    font-weight: 5;
}
.magic{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    letter-spacing: 2px;
    margin-top: -.5rem;
}
.box-1{
    width: 25px;
    height: 25px;
    background-color: rgb(31, 30, 30);
    border: 2px solid #fff;
    outline: 1px solid #fff;
}
.eva{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
section{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin: 3rem;
  gap: 2rem;
}
 @media(max-width:768px){
    section{
        grid-template-columns: repeat(2,1fr) !important;
    }
 }
           

select{
    border: none;
    font-size: 12px;
    background-color: #eee;
    color:rgb(68, 66, 66);
    padding: 4px;
}
