html{
    width: 100vw;
    height: 100vh;
}
body{
    background-color: aquamarine;
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
}
#main-container{
    width:100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.box{
    width: 10vmin;
    height:10vmin;
    border: 4px solid white;
    border-radius: 15px;
    align-items: center;
    text-align:center;
    font-size:40px
} 
#row-div{
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
   
}
#menu{
    height: 80px;
    width: 100%;    
    background:linear-gradient(180deg, white, aquamarine);
    justify-content: center;
    text-align: center;
    font-size: 50px;
    align-items: center;
}
#keyboard{
    display: flex;
    justify-content: center;
    gap: 30px;

}
#keys{
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 10px;
    align-items: end;
    text-align: center;

}
.winningPop{
    display: none;
    width: 50%;
    height: 30%;
    position: fixed;
    top:30%;
    bottom:0;
    padding: 40px;
    left: 1;
    right: 20%;
    margin: 0 auto;
    border: 8px solid rgb(182, 218, 150);;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    
}
#footer{
    width: 100%;
    height:70px;
    text-align: center;
    font-size: 20px;
    align-items: end;
    background:linear-gradient(aquamarine,white)
}
.refresh{
    width: 30px;
    height: 30px;
    
}
#restart-btn{
    background: none;
    border: none;
}
#restart-btn:hover{
    transform: scale(1.3);
}
#restart-btn:focus{
    transform: rotate(90deg);
    animation-duration: 1s;

}
.shake{
    animation: shake 0.5s;
    
    border-color: red;
  }
  
  @keyframes shake {
    0%  { transform: translate(1px, 1px) ;}
    10% { transform: translate(-1px, -2px) ; }
    20% { transform: translate(-3px, 0px) ;}
    30% { transform: translate(3px, 2px) ;}
    40% { transform: translate(1px, -1px) ;}
    50% { transform: translate(-1px, 2px) ; }
    60% { transform: translate(-3px, 1px) ;}
    70% { transform: translate(3px, 1px) ; }
    80% { transform: translate(-1px, -1px);}
    90% { transform: translate(1px, 2px) ;}
    100%{ transform: translate(1px, -2px);}
  }