@import url('https://fonts.googleapis.com/css2?family=Spicy+Rice&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

nav{
    text-align: center;
}


.case{
    height: 15vmin;
    width: 15vmin;
    background-color: #1E1E1E;
    border-radius: 1vh;
    box-shadow: -1px 3px 2px black;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#grid, section{
place-items: center;
}

#grid{
    width: 50vmin;
    height: 50vmin;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: #754763;
    
}

nav{
    padding-top: 1vh;
}

body{
    background-color:#754763;
}

#replay{
background-color: #1E1E1E;
border: none;
padding: 1.5vh;
border-radius: 4px;

}

button{
font-size: 1rem; 
font-family: "Spicy Rice", serif;
font-weight: 400;
font-style: normal;
color: #ffffff;
box-shadow: -1px 3px 2px black;
}


.case:hover{
    box-shadow: none;
}

section{
    padding-top: 2vh;
}

#message{
font-size: 2rem; 
font-family: "Spicy Rice", serif;
font-weight: 400;
font-style: normal;
color: #ffffff;
width: 24vh;
height: 23vh;
background-repeat: no-repeat;
justify-self: center;
margin: 3rem;
background-size: cover;
}

button:hover{
color: #E07F46;
box-shadow: none;
}

.hidden{
    display: none;
}


