@font-face{
   
    font-family: 'Sunnysfontstyle';
   
    src: url('/fonts/Sunnysfontstyle-Regular.ttf') format('truetype');
}
body{
    box-sizing: border-box;
    margin:0;
    padding: 0;
    background-color: beige;
    font-family: 'Sunnysfontstyle' !important;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    
}
h1{
    font-family: 'Sunnysfontstyle' !important;
}
.container{
    background-color: rgb(72, 93, 104);
    display: flex;
    justify-content: space-around;
    justify-items: center;
    flex-direction: column;
    align-items: center;
    height: 14rem;
    width: 14rem;
    padding:2rem;
    margin: 0 auto;
    top:5rem;
    position: relative;
    border-radius: .5rem;
}
.box-container{
    background-color: rgb(107, 171, 203);
    display: flex;
    justify-content: center;
    justify-self: center;
    flex-wrap:wrap;
    width: 8.5rem;
    margin:0 auto;
    border:4px solid black;
    box-shadow: 2px 2px 10px 2px rgb(188, 207, 216);
   
}
.box{
    color: transparent;
    border:1px solid black;
    background-color: rgb(233, 167, 88);
    width: 2rem;
    height:2rem;
}
.btn, .restartBtn, .level1, .level2, .level3{
    color:rgb(68, 65, 65);
    background-color: rgb(231, 231, 248);
    box-shadow: 2px 2px 2px rgb(68, 65, 65);
    text-transform: uppercase;
    font-family: 'Sunnysfontstyle' !important;
    font-size: 0.5rem;
    width: 3.5rem;
    padding: .5rem;
    display:inline;
    text-align: center;
    outline:none;
    border:2px solid rgb(68, 65, 65);
    border-radius:.5rem;
}
.btn:hover{
    box-shadow: 2px 2px 10px 2px rgb(188, 207, 216);
    background-color: rgb(130, 224, 224);
}
.btn:active{
    background-color: rgb(130, 224, 224);
    box-shadow: 2px 2px 2px rgb(239, 242, 241);
    padding: .4rem;
    margin: .2rem;
}
.level-buttons{
    display:flex;
    justify-content: center;
    margin-top: 6rem;
}

.win{
    font-family: baskerville;
    background-color: rgb(224, 240, 244);
    border:1px solid black;
    box-shadow: 2px 2px 10px 2px rgb(188, 207, 216);
    border-radius: .5rem;
    height: 2rem;
    width: 10rem;
    text-align: center;
    margin-bottom: 0 auto;
}
.empty{
    background-color: white;
}
.selected{
   
    border: 1px solid rgb(232, 238, 47);
}
img{
    width: 2rem;
    height: 2rem;
}
h1, p{
    font-family: 'Sunnysfontstyle' !important;
    color: rgb(72, 93, 104);
    text-align: center;
}
a{
    text-decoration: none;
}


@media(min-width:600px){

    .container{
        width: 30rem;
        height: 30rem;
    }
    .box-container{
        width: 16.5rem;
        
    }
    .box, img{
        width: 4rem;
        height: 4rem;
    }
    .btn, .restartBtn{
        width: 4rem;
        font-size: .7rem;
    }
    

}