.card {
    padding: 0.5vh;
    margin: 1vh;
    height: 24vh;
    width: 32vw;
    border: 0.2rem solid black;
    background-color: white;
    color: black;
    background-color: bisque;
    font-weight: bold;
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardOptions {
    display: flex;
    flex-direction: column;
}

.cardOption {
    padding: 0.5vh;
    margin: 1vh;
    height: 10vh;
    width: 32vw;
    border: 0.2rem solid black;
    background-color: white;
    color: black;
    background-color: bisque;
    font-weight: bold;
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message {
    height: 10vh;
    width: 20vw;
    background-color: white;
    border: 0.2rem solid black;
    z-index: 10000;
    font-size: clamp(1rem, 1rem, 2rem);
    left: 50%;
    top: 25%;
    transform: translate(-50%, -50%);
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.continue {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}