* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins , sans serif";
}

body{
    background-color: #212F0C;
    text-align: center;
    background-image: url(./background.svg);
    background-repeat: repeat-x;
    background-position: bottom;
    height: 100vh;
}

h1{
    font-size: 8vh;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-style:italic;
    text-align: center;
    font-size: 4vh;
    color: white;
    padding: 70px;
}


#grille {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-template-rows: 33% 33% 33%;
    max-width: 320px;
}

#grille .case:hover {
    background-color: #E7E794;
    opacity: .6;
}

#grille .case {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    background-color: white;
    border: 1px solid #32611F;
    border-radius: 10px;
    min-width: 100px;
    min-height: 100px;
    display: grid;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.background-image {
    width: 1%;
    height: 1%;
}

.box {
    border: 2px solid #32611F;
}

button {
    color: #919159;
    background-color: #E7E794;
    padding: 1%;
    border: 1px solid #919159;
    font-size: 2vh;
    
}