
.buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.btn {
    background-color: white;
    color: black;
    padding: 15px 32px;
    text-align: center;
    display: inline-block;
    font-size: 15px;
    margin: 4px 2px;
    cursor: pointer;
    border: none;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.container{
    margin-right: 8px;
}

#yesButton {
    position: absolute;
    margin-right: 150px;
}


#noButton {
    position: absolute;
    margin-left: 150px;
    /* transition: 0.5s; */
}


@media only screen and (max-width: 320px) and (max-height: 568px) {
    .btn {
        padding: 10px 20px;
        font-size: 15px;
    }

    .buttons {
        margin-top: 55px;
    }

    #yesButton {
        position: absolute;
        margin-right: 150px;
    }

}
  
@media only screen and (max-width: 414px) and (max-height: 736px) {
    .btn {
        padding: 10px 22px;
        font-size: 15px;
    }
    
    .buttons {
        margin-top: 65px;
    }
    #noButton {
        position: absolute;
        margin-left: 100px;
    }

}
    
