
    body {
        background: #FFE7E9;
        text-align: center;
        font-family: Arial, sans-serif;
        overflow: hidden;
        margin: 100px;
    }

    #bgCanvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
    }


    h1 {
        margin-top: 320px;
        font-size: 2.5em;
        color: #d63384;
    }

    .question {
        margin-top:10px;
    }

    p {
        font-size: 1.4em;
        color: #444;
    }

    .btn-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    button {
        font-size: 1.3em;
        padding: 12px 25px;
        margin: 20px;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: 0.2s;

    }

    #yesBtn {
        background-color: #ff4d6d;
        color: white;
    }

    #yesBtn:hover {
        transform: scale(1.1);
    }

    #noBtn {
        background-color: #6c757d;
        color: white;
        position: absolute;
        margin-left: -43px;
    }

@media (max-width: 430px) {
    body{
        height:100%;
        min-height:100vh;
    }
    h1 {
        margin-top: 0px;
    }
}
