body {
  background-image: url("/src/elements/images/Index-background.png");
}

h1 {
  font-size: 3rem;
  text-align: center;
  animation: TitreMove 0.5s infinite alternate-reverse linear;
}

#sous-titre {
  font-size: 1rem;
  color: var(--green-1);
  text-align: center;
  padding: 0;
  animation: SousTitreMove 0.5s infinite alternate-reverse linear;
  animation-delay: 0.25s;
}

footer p {
  font-size: 0.8rem;
  color: var(--green-4);
}

main {
  width: 100%;
  position: absolute;
  top: 20%;
}

h1,
#sous-titre {
  transition: font-size 0.5s;
}

@keyframes TitreMove {
  from {
    margin-top: 0px;
  }
  25% {
    margin-top: 0px;
  }
  26% {
    margin-top: 5px;
  }
  74% {
    margin-top: 5px;
  }
  75% {
    margin-top: 10px;
  }
  to {
    margin-top: 10px;
  }
}

@keyframes SousTitreMove {
  from {
    padding-top: 0px;
  }
  50% {
    padding-top: 0px;
  }
  51% {
    padding-top: 5px;
  }
  to {
    padding-top: 5px;
  }
}

@media screen and (min-width: 1000px) {
  h1 {
    font-size: 4rem;
  }

  #sous-titre {
    font-size: 1.3rem;
  }
}
