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

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

.main {
  height: 140vh;
  width: 90vw;
  margin: 30px;

  /* Pour centrer */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.boite-contour {
  display: flex;
  flex-direction: row;
  align-items: center;

  width: 100%;
  height: 100%;
  margin: 10px;

  border-width: 1px;
  border-style: solid;
  border-color: #FFF6E9;
  border-radius: 30px;
}

.boite {
  display: flex;
  flex-direction: row;
  align-items: center;

  width: 100%;
  height: 100%;
  margin: 10px;
}

.colonne {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.citation {
  margin-top: 30px;
  margin-left: 30px;
  margin-right: 30px;

  font-family: 'apfel_grotezkfett';
  font-weight: 700;
  font-size: 18px;
  text-align: left;
  text-transform: uppercase;
  color: #FFF6E9;
}

.titre-para {
  margin-top: 30px;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 10px;

  font-family: 'apfel_grotezkfett';
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  text-transform: uppercase;
  color: #FFF6E9;
}

.texte {
  margin-top: 30px;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 30px;

  font-family: 'Fira Code', monospace;
  font-weight: 400;
  font-size: 12px;
  text-align: left;
  color: #FFF6E9;
}

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

.texte a {
  color: #FFF6E9;
  font-weight: 600;
  text-decoration: none;
}