/* Basic styling for the Tic Tac Toe board */
#board {
    margin-bottom: 10px;
}

#board>div {
    display: inline-block;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    font-size: 24px;
    cursor: pointer;
    margin-right: 4px;
}

h1 {
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    font-size: 80px;
    text-align: center;
}

button {
    width: 100px;
    height: 100px;
    margin: 2px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: #eee9ec;
    background-color: #eee9ec;
    border: 2px solid #660101;
    border-radius: 5px;
    font-size: 50px;
    float: left;
    background-color: rgba(219, 170, 149, 0.7);
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.board-image {
    position: absolute;
    bottom: 4px;
    left: 4px;
    max-width: 12%;
    max-height: 12%;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(124, 121, 121, 0.393);
}

.reset-button {
    width: 100px;
    height: 100px;
    border: none;
    cursor: pointer;
}

#status {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Nunito';
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 60px;
    }

    #board>div,
    button {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
}