body {
    background-color: #ededed;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main {
    display: flex;
    padding-top: 10px;
}

.title {
    text-align: center;
    font-size: 50px;
}

.game-settings {
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

.board {
    width: 400px;
    height: 400px;
    border-radius: 2px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.board-square {
    box-shadow: inset 0 0 1px #000;
    background-color: white;
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-messages {
    text-align: center;
    padding-top: 20px;
    margin: auto;
    font-size: 20px;
}

footer {
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 70px;
}

@media (max-width: 1200px) {
    main {
        justify-content: center;
    }
}

@media (max-width: 850px) {
    main {
        gap: 50px;
    }

    .board {
        width: 400px;
        height: 400px;
    }

    footer {
        margin-top: 0px;
    }
}

@media (max-width: 650px) {
    .title {
        font-size: 50px;
        margin-bottom: 15px;
    }

    main {
        flex-direction: column-reverse;
        align-items: center;
    }

    .board {
        width: 300px;
        height: 300px;
    }

    .game-settings {
        flex-direction: column;
        padding: 10px;
        margin-bottom: 0px;
        margin: auto;
        align-items: center;
    }

    #player-one-name, #player-two-name, #start-game {
        width: 300px;
    }
}