/* ============================= FONTS ============================= */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap');

@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;
}

/* ============================= STYLES POUR TOUS LES ÉCRANS ============================= */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  background-color: #FFF6E9;
}

main {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.titre {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  top: 0;
}

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

.texte {
  font-family: 'Fira Code', monospace;
  font-weight: 400;
  text-align: left;
  position: absolute;
  left: 0;
  margin-left: 30px;
}

.bientot {
  background-color: black;
}

.texte p {
  margin-bottom: 20px;
}

.texte a:hover {
  text-decoration: underline;
}

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

/* ============================= STYLES SELON LES ÉCRANS ============================= */
/* Styles pour les mobiles */
@media screen and (max-width: 767px) {
  .colonne-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
  }

  .titre {
    margin-top: 50px;
  }

  .titre p {
    font-size: 2.8rem;
  }

  .titre img {
    height: 35px;
    padding-right: 20px;
  }

  .texte {
    font-size: 1.3rem;
  }

  .retour img {
    transform: rotate(180deg);
    height: 50px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin-left: 30px;
    margin-bottom: 50px;
    z-index: 999;
  }

  .colonne-2 {
    display: none;
  }
}

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

/* Styles pour les ordinateurs */
@media screen and (min-width: 1025px) {
  .colonne-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 50vw;
  }

  .titre {
    margin-top: 30px;
  }

  .titre img {
    height: 60px;
    padding-right: 20px;
  }

  .titre p {
    font-size: 5.3rem;
  }

  .texte {
    font-size: 1.8rem;
  }

  .retour img {
    transform: rotate(180deg);
    height: 60px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin-left: 30px;
    margin-bottom: 30px;
    z-index: 999;
  }

  .colonne-2 {
    background: url('../IMAGES/fond_manif.png') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    width: 50vw;
  }
}

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