.card {
    padding: 15px;
    margin: 15px;
    max-width: 100px;
    width: 100px;
    min-height: 100px;
    border: 2px solid black;
    background-color: white;
    color: black;
    background-color: bisque;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.message {
    background-color: white;
    border: 2px solid black;
    z-index: 10000;
    font-size: clamp(0.7rem, 1rem, 2rem);
    position: fixed;
    left: 45%;
    top: 25%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 10px;
}

.continue {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
