*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
height: 100vh;


}

.click_quantitly{
    text-align: center;
    font-size: 2rem;
}

.image_section{
    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 70vh;
    
}

img{
    width: 200px;
    height: 200px;
    border-radius: 5px;
}
button{
    margin-left: 45%;
    border: none;
    font-size: 1.2rem;
    border-radius: 10px;
    padding: 15px 30px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover{
    background-color: rgba(0, 0, 0, 0.404);
    padding: 20px 35px;
}