/*
    Description : style css de la page d'accueil
    Auteur      : Noa Berrier
    Date        : 16.01.2026
*/
body {
  background-image: url("../image_projet/background-image.png");
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  height: 100vh;
}
header {
  font-family: fantasy;
}
h1 {
  font-size: 70px;
}
.container1 {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
div {
  font-size: 40px;
}
footer {
  position: fixed;
  bottom: 50px;
  font-size: 60px;
}
nav :hover {
  transform: scale(1.2);
}
@media screen and (max-width: 780px) {
  .container1 {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  h1{
    font-size: 35px;
  }
}

