/*  Auteur :        Amayas Meghezi
    Date Création : 12.03.2026*/

body {
    margin: 0px;
}
/*Titre principal*/
h1 {
    color: aliceblue;
}
/*Titre Secondaire*/
h2{
    color: aliceblue;
}
/*en-tête*/
header {
    background-color: black;
    margin: 0px;
    padding: 30px;
    text-align: center;
}
/*largeur navigation*/
nav {
    padding: 50px;
}
/*texte bouton*/
nav a{
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-family: fantasy;
}
/*bouton de navigation*/
a.navigation{
    clip-path: polygon(100% 14%, 84% 77%, 0 77%, 15% 14%);
    padding: 50px;
    background-image: url(../image/image_Studio/logo_helldivers.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 50px;
    transition: 1s;
    transition-timing-function: ease;
}
/*bouton de navigation interaction*/
a.navigation:hover{
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: scale(1.5);
}

/*paragraphe de couleur blanche*/
p {
    text-align: justify;
    color: white;
    font-size: 22px;
}

footer{
    background: #000d1f;
  background: radial-gradient(circle, rgba(0, 13, 31, 1) 0%, rgba(212, 38, 38, 1) 50%, rgba(23, 61, 92, 1) 100%);
  background-size: cover;
  display: flex;
  justify-content: space-between;
  height: 75px;
  }
  
  #logo_EMF {
    height: 50px;
    margin-top: 12px;
    margin-left: 30px;
  }
  
  #logo_arrowhead{
    height: 50px;
    margin-top: 12px;
    align-items: flex-end;
    margin-right: 30px;
  }

  h4 {
    color: white;
  }