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

.error {
    border-radius: 50%;
    border: .2em solid red;
}

.correct {
    border-radius: 50%;
    border: .2em solid green;
}

.missed {
    border-radius: 50%;
    border: .2em solid darkorange;
}

.notSelected {
    border-radius: 50%;
    border: .2em solid transparent;
}

#imageTable {
    display: grid;
    margin: 10px 0 10px 0;
    border: solid 2px black;
    padding: 5px;
}

#imageTable img {
    width: 95%;
    margin: 0 2px 0 2px;
}

.outlinedDiv {
    border-radius: 10px;
    border: solid 2px black;
    text-align: center;

    height: 2em;
    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;
    height: 200px;
}

#modal-text {
    font-size: 2em;
    font-weight: bolder;
}

#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);
    }
}
