* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}


#grille {
    width: 30vmin;
    height: 30vmin;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    justify-self: center;
}

#grille .case {
    border: solid #887952 1vmin;
    display: grid;
    place-items: center;
    height: 10vmin;
    width: 10vmin;
    margin: 1px;
    background-color: #4E4236;
    background-size: contain;
    background-repeat: no-repeat;
}

#message {
    font-size: 25px;
    text-align: center;
    margin: 20px;
    color: #e21907d8;
    font-family: "Jua", sans-serif;
}

#message img {
    max-width: 15vmin;
}

.case:hover {
    background-color:#ffaeb4 ;
}

.jua-regular {
  font-family: "Jua", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.atma-medium {
  font-family: "Atma", system-ui;
  font-weight: 500;
  font-style: normal;
}


body {
    background-image: url(../img/grass.png);
    background-blend-mode: normal;
    background-size: cover;
    background-repeat: no-repeat
    background-attachment fixed
    ;
}


h1 {
size: 35px;
font-family: "Jua", sans-serif;
color: #e21907d8;
}

html {
    scroll-behavior: smooth;
}

header {
    width: 100%;
    height: auto;
    padding: 10px;
    text-align: center;
    background-color: #314d2f7e;
}

nav ul li {
    display: inline-block;
    padding-right: 20px;
    padding-top: 5px;
    }

footer{
  background-color: #ffaeb4;
  text-align: center;
  width: 100%;
  padding: 50px;
  position: relative;
}

a {
    text-decoration: none;
    color: #bb3305;
    font-family: "Atma", system-ui;
}

a:hover {
    color: #651f09;
    text-decoration: wavy underline;
}

button {
    font-family: "Atma", system-ui;
    background-color: #b03902;
    color: white;
    padding: 10px;
    border-radius: 5px;
    border-color: #631b02;
    margin: 20px;
}

button:hover {
    background-color: #ac2a0a
}

p {
    color: #f0774f;
    font-family: "Atma", system-ui;
    font-size: 20px;
    text-align: center;
    margin: auto;
}