body {

    font-size: larger
}

#container {
    text-align: center;
}

span {
    float: left;
}

.board {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    justify-content: space-evenly;
    align-content: space-evenly;
    justify-items: center;
    height: 220px;
    width: 600px;
    margin: auto;
    border: 1px blue solid;
}

.deckarea {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-evenly;
    align-content: space-evenly;
    justify-items: center;
    height: 110px;
    width: 600px;
    margin: auto;
    border: 1px red solid;
    margin-top: 5px;
    margin-bottom: 5px;
}

.card {
    width: 65px;
    height: 100px;
    border: 1px blueviolet solid;
    font-size: 0px;
    text-align: center;
    line-height: 100px;
    background-color: blueviolet;
    color: blueviolet;
}

.selected {
    background-color: yellow;
    border: 2pt black dotted;
    color: black;
}

.discarded {
    background-color: crimson;
    border: 1pt black dotted;
    color: black;
}

.correct {
    background-color: greenyellow;
}

.flipped {
    color: black;
    font-size: large;
}

button {
    height: 30px;
}