body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;

    }

.game-container {
    background-color: white;
    border-radius: 25px;
    box-shadow: 5px 5px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

p {
    color: rgb(44, 47, 221);
    text-align: center;
    
}

.settings {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-left: 15vw;
    padding-right: 15vw;
    padding-top: 2vw;
    font-size: 50px;

}

.square:hover {
    height: 20vh;
    width: 20vh;
    border-color: rgb(44, 47, 221);
    border-width: 10px;
    font-size: larger;
}

.square {
    height: 20vh;
    width: 20vh;
    border-color: rgb(44, 47, 221);
    border-width: 5px;
    font-size: larger;
}

button:disabled,
button[disabled]{
    color: #000000;
}


#reset {
    display: none;
}
.ai-options {
    display: none;
}
.ai-options-network {
    display: none;
}
#status {
    display: none;
}

#leaderboard-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .board {
        max-width: 60vw;
    }
    .square {
        width: 20vw;
        height: 20vw;

    }
    .square:hover {
        width: 20vw;
        height: 20vw;
    }
}

@media only screen and (max-width: 468px) {
    .board {
        max-width: 90vw;
    }
    .square {
        width: 20vw;
        height: 20vw;

    }
    .square:hover {
        width: 20vw;
        height: 20vw;
    }
}