#character-selection {
    position: absolute;
    background-color: var(--color2);
    display: flex;
    flex-direction: column;
    border-style: double;
    height: 400px;
    width: 1000px;
    text-align-last: center;
}

#character-selection-choices {
    display: flex;
    flex-direction: row;
}

.character-selection-box {
    width: 300px;
    background-color: var(--color3);
    border-style: solid;
    border-radius: 10px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin: 10px;
    cursor: pointer;
}

#endgame-window {
    z-index: 10;
    position: absolute;
    background-color: var(--color2);
    display: flex;
    flex-direction: column;
    border-style: double;
    border-radius: 20px;
    padding: 10px;
    justify-content: center;
    height: 700px;
    width: 1000px;
    text-align-last: center;
}

#stats-report {
    flex-direction: row;
    display: flex;
    justify-content: space-evenly;
}
