@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;
  }
  

  /*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: 5vw; 
  }


  /*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";
  }

  h4 {
    font-family: "Header";
    font-size: 2vw;
  }

 
  /*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;
  }


  /*Boutons qui servent à naviguer entre les différentees pages*/
  .bouton {
    display: block;
    color: white; 
    font-size: 3vh; 
    font-family: Arial, Helvetica, sans-serif;
}


  /*Toute la page*/
  body{
    background-color: #800505; 
  }
  
  
  /*Contenu principal de la page*/
  main {
    position: relative; 
    top: 17.35vh; 
    left: 12.50vw;
    width: 80vw;
    padding: 25px; 
    margin-left: 1px; 
    display: flex;
    flex-direction: column; 
    justify-content: start; 
    align-items: center;
    color: white; 
    font-size: 1vw; 
  }

  .welcome{
    background-color: rgb(210, 1, 1);
    box-shadow: 5px 5px 7px 2px rgba(0, 0, 0, 0.3);
    padding: 2vw;
    font-size: 1.40vw;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
  }

  .presentation{
    margin-top: 2vw;
    background-color: rgb(210, 1, 1);
    box-shadow: 5px 5px 7px 2px rgba(0, 0, 0, 0.3);
    padding: 2vw;
    font-size: 1.55vw;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
  }

  /*Bannière de L'Allianz Arena*/
  .Allianz img {
    height: 55vh;
    width: 100vw;
  }

  .Allianz {
   margin-bottom: 4vh;
   margin-right: 6vw;
  }