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

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  background-color: #FFF0E2;
}

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

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

/* COLONNE 1
=================== */

.colonne-1 {
  height: 100vh;
  width: 50vw;

  display: flex;
  flex-direction: column;
}

.titre {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 0;
  margin-top: 30px;
  padding-left: 30px;
}

.titre img {
  height: 60px;
  margin-bottom: 20px;
}

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

.boite-boutons {
  height: 100vh;
  width: 50vw;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

button {
  border-radius: 30px;
  border-style: none;
  border-width: 0;

  font-family: "Apfel Grotezk", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #FFF0E2;
  text-align: center;
  font-size: 28px;
  padding: 15px;
  width: 200px;
  /* -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; */
  cursor: pointer;
  margin: 15px;
}

.btn-ia {
  background-color: #E7E08B;
  color: #FFF0E2;
}

.btn-hum {
  background-color: #E7E08B;
  color: #FFF0E2;
}

.btn-ia:hover {
  background-color: #818479;
  color: #E7E08B;
}

.btn-hum:hover {
  background-color: #FF3225;
  color: #E7E08B;
}

/* COLONNE 2
=================== */

.colonne-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  background-color: #E7E08B;
  height: 100vh;
  width: 50vw;
}

.suivant img {
  height: 80px;
  position: absolute;
  left: 90vw;
  bottom: 0;
  margin-bottom: 130px;
}

#phrase {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 70px;
  text-align: left;
  padding-left: 20px;
  padding-right: 40px;

  font-family: "Apfel Grotezk", sans-serif;
}

.ia {
  color: #818479;
}

.hum {
  color: #FF3225;
}

.blur {
  filter: none !important;
}