body, html{

    margin: 0px auto;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    box-sizing: border-box;
    background-color: #2A2E37;
    color: rgba(255, 255, 255, 1);
    width: 100%;
    height: 100%;
    overflow: hidden;

}

.player-name, .player-victories{

    width: 100%;
    padding: 16px;

}

#root{

    width: 450px;
    min-width: 450px;
    height: auto;
    margin: 48px auto;
    padding: 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

}

#restart-game{

    margin: 32px auto;
    padding: 18px;
    text-transform: capitalize;
    border: 2px solid #3498db;
    background-color: transparent;
    color: rgba(255, 255, 255, 1);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);

}

#restart-game:hover{

    box-shadow: 0px 2px 6px rgba(0,0,0,0.6);
    color: #3498db;

}

.scoreboard{

    width: 100%;
    padding: 16px;
    height: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

}

.table{

    width: 150px;
    height: 150px;
    border: 3px solid #202124;
    color: rgba(255, 255, 255, 1);
    margin: 0px;
    padding: 16px;
    box-sizing: border-box;
    text-align: center;
    line-height: 120px;
    font-size: 4rem;
    transition: all 0.5s ease;
    cursor: pointer;
}

.table:hover{

    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 2px 6px rgba(0,0,0,0.6);

}

.winner-position{

    background-color: rgba(255, 255, 255, 0.1);
    color: #fff200;

}