/* ============================= FONTS ============================= */
@font-face {
  font-family: 'apfel_grotezkfett';
  src: url('../FONTS/apfelgrotezk-fett-webfont.woff2') format('woff2'),
    url('../FONTS/apfelgrotezk-fett-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'apfel_grotezkregular';
  src: url('../FONTS/apfelgrotezk-regular-webfont.woff2') format('woff2'),
    url('../FONTS/apfelgrotezk-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* ============================= STYLES POUR TOUS LES ÉCRANS ============================= */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  background: url('../IMAGES/fond_manif.png') no-repeat center center fixed;
  background-size: cover;
}

main {
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  /* Pour centrer */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
  color: inherit;
}

.titre {
  font-family: 'apfel_grotezkfett';
  text-align: center;
  text-transform: uppercase;
  color: black;
}

.sous-titre {
  font-family: 'apfel_grotezkfett';
  text-align: center;
  text-transform: uppercase;
  color: black;
}

.suivant p {
  font-family: 'apfel_grotezkregular';
  text-align: center;
  text-transform: uppercase;
  color: black;
}

.suivant a {
  border: 2px solid black;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.suivant a:hover {
  background-color: rgba(255, 0, 0, 0.5);
}

/* ============================= STYLES SELON LES ÉCRANS ============================= */
/* Styles pour les mobiles */
@media screen and (max-width: 767px) {
  .titre {
    font-size: 1.5rem;
  }

  .sous-titre {
    font-size: 1rem;
    padding-bottom: 20px;
  }

  .suivant p {
    font-size: 1.2rem;
  }

  .suivant a {
    margin: 20px;
    padding: 5px;
  }

  .suivant img {
    height: 20px;
    padding-left: 10px;
  }

  .logo {
    height: 40px;
    position: absolute;
    bottom: 0;
    margin-bottom: 60px;
  }
}

/* Styles pour les tablettes */
@media screen and (min-width: 768px) and (max-width: 1024px) {}

/* Styles pour les ordinateurs */
@media screen and (min-width: 1025px) {
  .titre {
    font-size: 4.3rem;
  }

  .sous-titre {
    font-size: 1.9rem;
    padding-bottom: 30px;
  }

  .suivant p {
    font-size: 2.6rem;
  }

  .suivant a {
    margin: 30px;
    padding: 10px;
  }

  .suivant img {
    height: 40px;
    padding-left: 20px;
  }

  .logo {
    height: 50px;
    position: absolute;
    bottom: 0;
    margin-bottom: 40px;
  }
}

/* Styles pour les grands écrans */
@media screen and (min-width: 1201px) {}