body {
    margin: 0 auto;
    padding: 5px;
    font-size: 1em;
    max-width: 900px;
    max-height: 700px;
    background: lightcyan;
}

#table {
    display: grid;
    margin: 10px 0 10px 0;
    border: solid 2px black;
    padding: 5px;
    border-radius: 10px;
    grid-gap: 3px;
}

.cell {
    height: 90%;
    width: 90%;
    min-height: 70px;
    border-radius: 50%;
    border: solid .25em transparent;
}

.outlinedDiv {
    border-radius: 10px;
    border: solid 2px black;
    text-align: center;
    line-height: 1.5em;
}

.informationText {
    display: inline-block;
    width: 2ch;
    text-align: right;
}

.divider {
    font-weight: 900;
    font-size: 1.7em;
    padding: 0 .25em 0 .25em;
}

#modal-panel {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
}

#modal-content {
    background-color: lightcyan;
    margin: 15% auto;
    padding: 20px;
    text-align: center;
    width: 200px;
}

#modal-span {
    font-size: 1.8em;
    font-weight: bolder;
}

#modal-span img {
    height: 190px;
    width: 95%;
}

#spinner {
    content: " ";
    width: 100px;
    height: 100px;
    margin: 15px auto auto auto;
    border-radius: 50%;
    border: 15px solid;
    border-color: green transparent blue transparent;
    animation: spinner 1s linear infinite;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.missed {
    animation: missed 3s linear infinite;
    border: .25em solid red;
}

.previous {
    animation: missed 3s linear infinite;
    border: .25em solid darkgreen;
}

.selection {
    animation: missed 3s linear infinite;
    border: .25em solid purple;
}

@keyframes missed {
    0% {
        transform: scale(50%);
    }
    100% {
        transform: scale(90%);
    }
}
