*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;
}
#wrapper{
    max-width: 350px;
    border: 1px solid black;
    border-radius: 15px;
    margin: auto;
    margin-top: 60px;
    padding-top: 15px;
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);


}
.nav{
    color: white;
    background-color: black;
    padding: 10px;
    font-size: 1.5rem;
    padding-left: 20px;
}
.footer{
    color: white;
    background-color: black;
    padding: 10px;
    font-size: 1.5rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
}
#wrapper h1{
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-decoration:underline;
    font-weight: bolder;
    color: rgb(245, 8, 118);
}
.container{
    padding: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    
}
.box{
    width: 30%;
    border: 2px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-radius: 10px;
    cursor: pointer;
    height: 5rem;
    user-select: none;
    color: transparent;
 

}


#one,#four,#seven{
    border-left: none;
   
}
#two,#one,#three{
    border-top: none;
}
#three,#six,#nine{
    border-right: none;
}
#seven,#eight,#nine{
    border-bottom: none;
}

.reset-turn{
    margin-top: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
}
.reset{
    color: white;
    background-color: rgb(90, 18, 18);
    border-radius: 8px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.3rem;
    padding: 8px;
    cursor: pointer;
    border: none;
}

