header{
    position: fixed;
    background-color: #E70012;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 20px 10px #000000;
}

header a{
    padding-left: 10px;
    text-decoration: none;
    color: #000000;
}

header a h1{
    background-color: white;
    padding: 5px;
    border-radius: 10px;
    border: 2px solid black;
}

body{
    background-image: url("../assets/img/fond_objets.png");
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "Roboto", Arial, sans-serif;
}

.bloc{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    padding: 40px;
}

img{
    padding: 20px;
}

.titre img{
  width: 40%;
  border-radius: 8px;
  display: flex;
}

.liste img{
    flex: 1;
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 100%;
    margin: auto;
}

footer{
    background-color: white;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 50px;
    box-shadow: 0px 0px 20px 2px #000000;
    text-align: left;
}

footer p{
    border: 2px solid;
    border-radius: 5px;
    position: fixed;
    padding: 4px;
    font-size: auto;
    left: 10px;
    font-weight: bold;
}

footer p a{
    color: #000000;
    text-decoration: none;
}