*{
    margin: 0%;
    padding: 0%;
   
}
body{
    background-color: #C4A69D;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 40px;
    background-image: radial-gradient(#ccc 1.5px ,transparent 1.5px);
    background-size: 20px 20px;
}
.header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
h1{
    border: 3px solid black;
    padding: 10px 20px;
    background: white;
    box-shadow: 6px 6px 0px 0px black;
    font-size: 55px;
}
.current{   
    font-size: 30px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    border: 3px solid black;
    padding: 10px 20px;
    background: white;
    box-shadow: 6px 6px 0px 0px black;  


}
.main{
   display: grid;
    grid-template-columns: 150px 150px 150px ;
    gap: 20px;


}
.game{
    width: 150px;
    height: 150px;
    font-size: 8rem;
    font-weight: bold;
    
cursor: pointer;
    background-color: white;
    border: 3px solid black;
    box-shadow: 6px 6px 0px 0px black;
}
.ln{
    padding: 10px 20px;
    background: white;
    border: 3px solid black;
    box-shadow: 6px 6px 0px 0px black;
    transition: all 0.3s ease;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 35px;

}
.ln:active{
    transform: translate(6px, 6px);
    box-shadow: 0px 0px 0px 0px black;
}

