*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    height: 100vh;

}
.main{
    display: flex ;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #C60C30;
    padding: 0 15px;
    height: 100vh;
 
}

.main-hd{
    margin-bottom: 20px;
}
.main-hd h2{
    font-size: 45px ;
    font-family: 'STIX Two Text', serif;
    color: whitesmoke;
}

.hide{
    display: none !important;
}

.allBoxes{
    width: 100%;
}
table {
    max-width: 350px;
    margin: auto;
}
td {
    width: 120px;
    height: 100px;
    text-align: center;
    font-family: cursive;
    font-size: 35px;
}
.one,.three{
    border-bottom: none !important;
}
.one,.three , .four , .six{
    border: 2px solid lightgray;
}
.two, .five,.eight{
    border-top: 2px solid lightgray;
    border-bottom: 2px solid lightgray;
}
.eight{
    border-top: none !important;
}
.two{
    border-bottom: none !important;
}
.seven , .nine{
    border: 2px solid lightgray;
    border-top: none !important;
}
.tdDisable{
    pointer-events: none !important;
}
.user-form{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 5px;
}
.user-form h3{
    font-family: 'STIX Two Text', serif;
    font-size: 24px;
    color: rgb(255, 166, 0) !important;
}
.user-form input{
    width: 100%;
    height: 40px;
    outline: none;
    background: transparent;
    color: white;
    font-size: 20px;
    padding: 8px;
    border: none;
    border-bottom: 2px solid rgb(39, 97, 255);
    margin: 15px 0;
}
.resultBox{
    background-color: #ee1f48;
    border: 5px  double white;
    width: 350px;
    border-radius: 30px;
    text-align: center;
    padding: 10px;
}
.winnerName{
    margin: 15px 0;
    font-size: 45px;
    font-family: cursive;
    color: rgb(123, 187, 26);
}

.win{
        font-family: cursive;
        font-size: 35px;
        color: white;
        margin: 15px 0;
    }
    

    /* BUTTONS */

    .userBtn{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
    
.userBtn button{
    margin: 15px 10px;
    width: 140px;
    height: auto;
    outline: none;
    color: white;
    font-family: cursive;
    padding: 8px;
    border-radius: 25px;
    border: 2px solid white;
    font-weight: bold;
    color: black;
    overflow: hidden;
}

.userBtn button:disabled{
    background-color: gray;
}
.user-form button{
    display: block;
    margin-top: 10px;
    width: 120px;
    height: 40px;
    outline: none;
    font-family: cursive;
    padding: 5px;
    border-radius: 15px;
    border: none;
    font-weight: bold;
    color: black;
    cursor: pointer;
    align-items: center !important;
}
.user-form button:hover{
        background-color: rgb(255, 166, 0);
    }
.restartBtn button{
    margin: 15px 10px;
    width: 140px;
    outline: none;
    cursor: pointer;
    background-color:rgb(255, 166, 0);
    font-family: cursive;
    padding: 5px;
    border-radius: 15px;
    font-weight: bold;
    height: 40px;
    overflow: hidden;
    color: white;
    border: none;
}