.card {
    padding: 10px;
    margin: 10px;
    height: 245px;
    width: 150px;
    border: 2px 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: 10px;
    margin: 10px;
    height: 100px;
    width: 100px;
    border: 2px 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: 2px 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;
}