@font-face{
  font-family: "Header" ;
  src: url('../assets/font/Auliare.otf');
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
    

  /*Haut de page = HEADER*/
  header {
    position: fixed;
    background-color: #DC052D; 
    color: #fff; 
    width: 100vw; 
    height: 20vh; 
    display: flex; 
    align-items: center;
    font-size: 10px; 
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 10; 
    padding: 20px; 
  }

  body{
    background-color: #800505; 
  }


  /*Header - Logo du Bayern*/
  .logo {
    display: flex; 
    align-items: center;
  }

  /*Header - Logo du Bayern*/
  .logo img {
    width: 5vw;  
    margin-bottom: 1vw; 
  }
    
    /*Header - Les 5 étoiles du Bayern*/
  .stars img {
    width: 12vw;
    align-items: start;
    margin-bottom: 1vh;
    margin-left: 1vw; 
  }
  
  /*Header - Texte au milieu du header pour expliquer et comprendre facilement la page*/
  .contenu{
    font-size: 1.75vw; 
    align-items: center;
    margin-left: 6vw; 
  }
      
  /*Texte "H1" dans le Header. "FC Bayern" & le contenu de la page*/
  h1 {
    display: block; 
    font-size: 3vw;
    margin-bottom: 1vw; 
    margin-left: 1vw; 
    font-family: "Header";
    }

    /*Texte "H2" dans les "blocks" questions (QUAND? etc etc...) */
    h2 {
      
      font-family: "Header";
      }
 
      
  /*Navigation = La où les "boutons" sont. Juste en dessous du header*/
  nav {
    position: fixed;
    top: 16vh; 
    width: 100%;
    height: 5.5vh; 
    background-color: rgb(210, 1, 1);
    display: flex; 
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center; 
    z-index: 10;
    border-bottom: solid white 1px;
  }
      
  /*Contenu principal de la page*/
  main {
    position: relative; 
    top: 20vh;  
    width: 80vw; 
    padding: 50px; 
    margin-left: 1px; 
    display: flex; 
    flex-direction: column; 
    justify-content: start; 
    align-items: center; 
    color: white; 
    font-size: 1vw; 
  }
      
  /*Boutons qui servent à naviguer entre les différentees pages*/
  .bouton {
    display: block;
    color: white; 
    font-size: 3vh;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  /*Texte "Quand ?" */
  .historyWhen {
    background-color: rgb(210, 1, 1);
    box-shadow: rgb(0, 0, 0) 5px 5px 7px 2px;
    padding: 1.60vw;
    font-size: 1.40vw;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    text-align: left;
    width: 65vw;
    height: 65vh;
  }

  /*Texte Comment ? */
  .historyLegendary{
    margin-top: 5vh;
    margin-left: 30vh;
    background-color: rgb(210, 1, 1);
    box-shadow: rgb(0, 0, 0) 5px 5px 7px 2px;
    padding: 1.60vw;
    font-size: 1.40vw;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    width: 90vw;
    height: 115vh;
  }

  .historyLegendary img {
    margin-top: 0.75vh;
    width: 22vw;
    height: 53vh;
  }

  /*Texte "Hall Of Fame" */
  .HallOfFame {
    margin-top: 5vh;
    background-color: rgb(210, 1, 1);
    box-shadow: rgb(0, 0, 0) 5px 5px 7px 2px;
    padding: 1.60vw;
    font-size: 1.40vw;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    text-align: left;
    width: 65vw;
    height: 835vh;
  }