body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: black;
    overflow: hidden;
}

.btn {
    width: 100%;
    height: 50vh;
    font-size: 15vw; /* responsive font size */
    border: none;
    position: relative;
    transition: top ease 0.2s;
    box-shadow: 0px 5px 0px 0px rgba(0,0,0,0.2);
    border-radius: 25px; /* rounded borders */
}

.btn:active {
    top: 5px;
}

#yesButton {
    color: white;
}

#noButton {
    color: white;
}
