*{
    margin: 0px;
    padding: 0px;
    font-family: 'Courier New', Courier, monospace;
}
body{
    background-color:antiquewhite;
}
main{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}
.container{
    margin-top: 20px;
    height: 60vh;
    width: 60vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.game{
    height: 60vmin;
    width: 60vmin;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vmin;
}
.box{
    width: 18vmin;
    height: 18vmin;
    font-size: 2rem;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
    color: black;
    margin-left: 0.5vmin;
    background-color: #c0d23e;
    cursor: pointer;
}
#reset-btn{
    margin-top: 20px;
    padding: 1rem;
    font-size: 1.25rem;
    color: #fff;
    background-color: #191913;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
}

.winner-text{
    height: 100vh;
    width: auto;
    margin-top: 45vh;
    text-align: center;
    display: none;
    
}
#winner{
    color: rgb(129, 228, 8);
}
.winner-text h3{
    color: rgb(101, 101, 135);
    margin-top: 20px;
}
#replay{
    margin-top: 20px;
    padding: 20px;
    background-color: #c0d23e;
    color: rgb(251, 251, 251);
    border-radius: 40px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
}
#replay:hover{
    background-color: rgb(36, 209, 13);
    color: #ffffff;
    padding: 25px;
    transition: 0.5s;
}