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

/* Body Background */
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #94BBE9, #EEAECA);
    font-family: 'Poppins', sans-serif;
}

/* Main Card */
.container {
    text-align: center;
    background: white;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    width: 400px;
}

/* Heading */
h3 {
    margin-bottom: 30px;
    color: #5a5a5a;
    font-family: 'Dancing Script', cursive;
}

/* Buttons Container */
.buttons {
    position: relative;
    width: 250px;
    height: 100px;
    margin: 0 auto;
}

/* Buttons */
button {
    width: 110px;
    height: 40px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Dancing Script', cursive;
}

/* YES Button */
#yesBtn {
    background-color: #EEAECA;
    color: white;
    position: absolute;
    left: 0;
    top: 10px;
    transition: opacity 0.3s ease;
}

#yesBtn:hover {
    opacity: 0.85;
}

/* NO Button */
#noBtn {
    background-color: #94BBE9;
    color: white;
    position: absolute;
    right: 0;
    top: 10px;
}

/* Mobile */
@media (max-width: 600px) {

    .container {
        width: 90%;
        padding: 30px 20px;
    }

    button {
        width: 90px;
        height: 36px;
        font-size: 14px;
    }

    .buttons {
        width: 200px;
        height: 60px;
    }
}