body{
    margin-top: 30px;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img1{
    display: flex;
    flex-direction: column;
    align-items: center;    
}
.buttons{
    display: flex;
    gap: 20px
    ;
}
button{
    background-color: pink;
    border-radius: 3px;
    padding: 10px 30px;
    opacity: 1;

}
.no {
    position: absolute;
    left: 55%;
    top: 70%;
    transform: translate(-50%, -50%);
}
.yes{
    position: absolute;
    left: 45%;
    top: 70%;
    transform: translate(-50%, -50%);
}
button:hover{
    opacity: 0.6;
    cursor: pointer;

}
