body{
    background-image: url("../assets/img/kirby_ultimate_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Roboto', sans-serif;
}

header{
    position: fixed;
    background-color: #E70012;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100px;
    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;
}

nav{
    background-color: #000000;
    color: white;
    padding: 15px;
    border: 100px;
    margin: 150px;
    box-shadow: 0px 0px 20px 10px #000000;
    font-size: 150%;
}



.container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  padding: 40px;

}

.titre img{
  width: 50%;
  border-radius: 2px;
  bottom: 0;
}

.texte {
  flex: 1;
  background-color: black;
  color: white;
  padding: 20px;
  border-radius: 20px;
  font-family: sans-serif;
  max-width: 40%;
}

.grille-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 60%;
}

.grille-images img {
  width: 200%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

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;
}