@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Caveat", cursive;
}

html, body {
    height: 100%;
    width: 100%;
}


body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

#playerTurn {
    font-size: 3rem;
    font-weight: bold;
}

#caseContainer {
    width: 50%;
    aspect-ratio: 1 / 1;

    background-color: rgb(28, 28, 28);

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
}

#caseContainer > div {
    width: 100%;
    height: 100%;

    background-color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 7em;

    overflow: hidden;
    line-height: 2px;

    cursor: pointer;
}

#resetButton {
    font-size: 3rem;
    font-weight: bold;
    padding: 9px 50px;
    border: solid 5px #151515;
    border-radius: 10px;

    cursor: pointer;
}