body, html{
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    margin: 0;padding: 0
}

.container {
    display: flex;
    height: 100%;
    width: 100%;
}

.container .playerColumn:nth-child(2n+1) {
    background: black
}

.container .playerColumn:nth-child(2n+1) .player {
    background: white
}

.playerColumn {
    height: 100%;
    flex: 1;
    position: relative;
}

.player{
    width: 64px;
    height: 64px;
    position:absolute;
    transform:translate(-50%, -50%);
    border-radius: 100%;
    left: 50%;
    background: black;
}

#whoWon {
    font-family: 'Times New Roman';
    color: #000000;
    font-size: 50px;
    font-weight: bolder;
    position:absolute; top:0%;
    background: rgba(127, 127, 127, 0.8);
    text-align: center;
    width: 100%;
    height: auto;
    display: none;
    padding: 20px 0;
    text-transform: uppercase;
}

#splashScreen{ 
    height: 100%; 
    width: 100%; 
    font-family: 'Times New Roman';  color: #ffffff;  font-size: 45px; font-weight: bolder;
    background-color: #000000;
    position:absolute; left:50%; top:50%; transform:translate(-50%, -50%);
    text-align:center
}
#splashScreen button{ 
    border-radius: 15px;
    font-family: 'Times New Roman';  color: #000000;  font-size: 35px; font-weight: bolder;
    background-color: #ffffff;
    padding: 20px;
    margin: 30px
}
#splashScreen div{ 
display:flex;    justify-content: center;
}
#howtoplay{
    font-family: 'Times New Roman';  color: #ffffff;  font-size: 27px; font-weight: bolder;
}