body {
    background-color: #F5E8E8;
    font-family: 'limelight', 'arial';
    overflow: hidden;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.question {
    text-align: center;
    margin-top: 5vh;
    font-size: 3vw;
}


#yes, #no {
    padding: 1.2vw 2.5vw;
    border-radius: 1vw;
    text-decoration: none;
    font-size: 2vw;
    margin: 2vw 1vw 2vw 1vw;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
} 

#yes {
    color: white;
    background-color: red;
    margin-left: 0;
    margin-right: 2vw;
} 

#no {
    color: black;
    border: 0.2vw solid black;
    background: #fff;
}  


.container {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    height: 40vh;
    max-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
}

.heart1, .heart2, .heart3, .heart4 {
    position: absolute;
    top: -20vh;
    width: 8vw;
    height: 8vw;
    min-width: 32px;
    min-height: 32px;
    max-width: 120px;
    max-height: 120px;
}

.heart1 {
    left: 10vw;
    animation: moveDown 4s linear infinite;
}
.heart2 {
    left: 80vw;
    animation: moveDown 8s linear infinite;
}
.heart3 {
    left: 50vw;
    animation: moveDown 5s linear infinite;
    transform: rotate(45deg);
}
.heart4 {
    left: 40vw;
    animation: moveDown 8s linear infinite;
}

@keyframes moveDown {
    0% { top: -20vh; }
    100% { top: 60vh; }
}

.hidden {
    display: none;
}

#sorryScreen {
    font-size: 2.5vw;
    width: 60vw;
    max-width: 90vw;
    min-width: 250px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff8f8;
    border-radius: 1vw;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    text-align: center;
    padding: 2vw;
}

@media (max-width: 600px) {
    .question {
        font-size: 6vw;
    }
    #yes, #no {
        font-size: 4vw;
        padding: 2vw 4vw;
    }
    #sorryScreen {
        font-size: 4vw;
        width: 90vw;
        padding: 4vw;
    }
    .container {
        height: 30vh;
    }
    .heart1, .heart2, .heart3, .heart4 {
        width: 16vw;
        height: 16vw;
    }
}
