*{
    margin: 0;
    padding: 0;
    background-color: #58504A;
}
.heading{
    font-size: 2.6rem;
    text-align: center;
    color: #89DAFF;
    padding-top: 1.5rem;
    margin: 2rem;
}
.game{
    height: 70vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.boxes {
    width: 45%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.box{
    width: 30%;
    height: 30%;
    background-color: #8F95D3;
    border-radius: 25px;
    box-shadow: 2px 2px 2px 2px rgb(62, 61, 61);
    color: #ffffff;
    font-size: 3.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#reset-btn{
    background-color: peachpuff;
    width: 100px;
    height: 1.8rem;
    font-size: 1rem;
    font-weight: 550;
    letter-spacing: 0.05rem;
    border-radius: 10px;
    cursor: pointer;
}
.winner-output{
    display: flex;
    align-items: center;
    flex-direction: column;    
    height: 100vmin;
}
#newbutton{
    background-color: peachpuff;
    width: 120px;
    height: 3rem;
    font-size: 1rem;
    font-weight: 550;
    letter-spacing: 0.05rem;
    border-radius: 10px;
    cursor: pointer;
}

.msg-cont{
    margin: 2rem;
    text-align: center;
    display: flex;
    font-size: 3rem;
    color: #ffffc1;
    font-weight: 500;
}
.hide{
    display: none;
}