*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: #14BDAC;
    text-align: center;
}

h1{
    color:#545454;
    font-size: 70px;
    margin-block:35px  0;
    font-family: "poppins",sans-serif;
}

.container{
    height: 70vh;
    display:flex;
    align-items: center;
    justify-content: center;
}

.game{
    width: 418px;
    display:flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap:12px;
}

.box{
    height:131px;
    width:131px;
    border-radius: 15px;
    background-color: #0DA192;
    color:#F2EBD3;
    font-weight:500 ;
    font-size: 85px;
    border: none;
}

#reset-btn{
    border: none;
    color:white;
    background:#0D0D0D;
    font-size: 17px;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

#new-btn{
    border: none;
    color:white;
    background:#0D0D0D;
    font-size: 17px;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.hide{
    display: none;
}

#msg{
    font-size: 70px; 
    font-weight: 600;
    margin-block:0 35px;
    font-family: "poppins",sans-serif;
}

.msg-container{
    padding-block: 250px;
}


/* Media Queries */

@media screen and (max-width: 900px){
    #msg{
        font-size: 50px;
    }
}

@media screen and (max-width: 600px){
    #msg{
        font-size: 35px;
    }

    h1{
        font-size: 60px;
        margin-block:70px 0;
    }

    .container {
    height: 60vh;
    }

    .box {
    height: 100px;
    width: 100px;
    }
}

@media screen and (max-width: 445px){
        #msg{
        font-size: 30px;
    }

    h1{
        font-size: 50px;
        margin-block:60px 0;
    }

    .container {
    height: 62vh;
    }
}