.projectSec{
    max-width: 100vw;
    height:61vh;
    /* background-color: red; */
    display: grid;
    grid-template-columns: auto auto;
    gap: 2vw; 
    align-items: center;
    justify-content: center;
    margin: 0vw 1vw;
}

.resultSec{
    max-width: 100vw;
    height: 20vh;
    /* background-color: aqua; */
    display: grid;
    grid-template-columns: auto;
    /* align-items: center; */
    justify-content: center;
    margin:0vw 1vw;
    font-size: 1.75em;
}

.projectTitle{
    margin: 0vw 1vw;
    padding: 2vw;
    display: grid;
    justify-content: center;
    align-items: center;
}

.tictactoeBoard{
    /* border: 2px solid white; */
    width: 30vw;
    height: 45vh;
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    justify-items: center;
}


.tictactoeCell{
    display: flex;
    width: 10vw;
    height: 15vh;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

#cell1, #cell2, #cell3{
    border-top: none;
}

#cell1, #cell4, #cell7{
    border-left: none;
}

#cell3, #cell6, #cell9{
    border-right: none;
}

#cell7, #cell8, #cell9{
    border-bottom: none;
}

.diffAndClear{
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
    /* align-items: center; */
    /* background-color: purple; */
    /* border: 2px solid white; */
    width: 20vw;
    height: 20vh;
}


/* .resetButton{
    background-color: rgb(0, 0, 45);
    color: white;
    width:6vw;
    height:2vw;
} */

.diffAndClear button{
    background-color: rgb(6, 6, 69);
    color:rgb(255, 255, 255);
    padding: 1rem 4rem;
    margin:0.5rem 1rem;
    border: 1px solid white;
    font-size: 1em;
    cursor:pointer;
}

.diffAndClear button:hover{
    background-color: white;
    color: black;
}

.hoverCell:hover{
    background-color: white;
    transition: 0.3s;
    opacity: 0.25;
    /* color: black; */
}

.tictactoeBoard img{
    width:50px;
    height:50px;
    -webkit-filter: invert(100%);
    filter: invert(1100%);
}