*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
#grille{
    width: 32vmin;
    height: 30vmin;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 3px;
}
body{
    background: url('img/Untitled.png') no-repeat center center fixed;
    background-size: cover;
}

#basket{
    background-image: url(./img/panic.png);
    background-size: contain;
    background-repeat: no-repeat;
    justify-self: center;
    align-content: center;
    height: 475px;
    width: 243px;
}

#grille .case{
    border: solid rgba(255, 255, 255, 0) 5px;
    display: grid;
    place-items: center;
    height: 10vmin;
    width: 10vmin;
    margin: 1px;
    
}
.case:hover{
background-color: rgb(228, 87, 87);
}
h1{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    color: rgb(0, 0, 0);

}
p{
    padding: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    color: rgb(81, 126, 223);
    font-size: 25px;
}
header{
    padding: 15px;
    background-color: rgb(83, 117, 219);
}
nav{
    padding: 20px;
    text-align: center;
}
.case{
    background-size: contain;
    background-repeat: no-repeat;
}