* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #84CAE7;
    color: #84CAE7;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main {
    /* background-color: #4CE0D2; */
    height: 90vh;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title {
    border: 2px solid #041B15;
    border-radius: 10px;
    background-color: #136F63;
    text-align: center;
    padding: 8px 10px;
    margin-top: 10px;
}

.game-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
    gap: 1px;
    margin-top: 20px;
    height: 65vmin;
    width: 65vmin;
    /* background-color: #136F63; */
    /* border: 6px solid #041B15; */
}

.box {
    background-color: #136F63;
    border: 3px solid #041B15;
    border-radius: 10px;
    font-size: 4em;
    color: #84CAE7;
    cursor: pointer;
    height: 21vmin;
    width: 21vmin;
}

.newgame-btn, .reset-button {
    background-color: #22AAA1;
    border: 3px solid #041B15;
    color: #041B15;
    font-size: 1rem;
    font-weight: bold;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

.winner-text {
    background-color: #0a56da;
    border: 3px solid #1a041b;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.buttons {
    display: flex;
    justify-content: center;
}

.winner-container {
    height: 100vmin;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hide {
    display: none;
}