*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    user-select: none;
    color: white;
}
main{
    background-color: rgb(2, 6, 41);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#header{
    display: flex;
    width: 235px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
#header .player{
    background-color: rgb(35, 34, 80);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 12px;
    border: solid 4px rgb(35, 34, 80);
    opacity: 0.5;
    transition: 0.3s;
}
#header .player:hover{
    border: solid 4px #af2323;
}
#header .player-active{
    opacity: 1;
    border: solid 4px rgb(18, 4, 67);
}
#header #xPlayerDisplay{
    color: #1892EA;
}
#header #oPlayerDisplay{
    color: #a615bc;
}
#board{
    display: grid;
    grid-template-columns: repeat(3, 70px);
    grid-template-rows: repeat(3, 70px);
    gap: 12px;
}
#board .cell{
    background-color: #17122A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s background;
}
#board .cell:hover{
    background-color: #2a2343;
}
#restartBtn{
    margin-top: 30px;
    width: 235px;
    background-color: #17122A;
    padding-top: 8px;
    padding-bottom: 8px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3 background;
    visibility: hidden;
}
#restartBtn:hover{
    background-color: #2A2343;
}