body {
    background-color: #EEEEF0;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;

}

.header {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100px;
    background-color: #DD3C64;

}

.title {
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;

    font-size: 50px;
    color: white;
}

.mainContainer {
    display: flex;
    flex: 1;
    align-content: center;
    justify-items: center;
}

.container {
    margin-top: 10px;
    padding: 10px;

    width: 100%;
    height: 100%;

    display: grid;
    grid-template-rows: minmax(20px, 40px) minmax(100px, 1fr) minmax(20px, 40px);
    justify-content: center;
}

.turn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.turnPlayer {
    margin: 0;
}

.board {
    margin-top: 10px;
    width: 450px;
    height: 450px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    box-shadow: rgba(0, 0, 0, 0.20) 0px 5px 15px;

}

.grid {
    width: 150px;
    height: 150px;
    background-color: white;
    border: 1px black solid;
    font-size: 75px;
    font-weight: 900;
}

.options {

    margin-top: 10px;
}

.resetBtn {
    padding: 5px 0px;
    font-size: large;
    font-weight: bold;
    color: white;
    background-color: #1c1c1c;
    border: none;
    width: 100%;
    height: 50px;

}

.winnerDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
}

.announceWinner {
    margin: 0;
    color: white;
}


.footer {
    display: flex;
    background-color: #FFD2D7;
    justify-content: center;
    margin-top: auto;
}

