body {
  background-color: #1F1F1F;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #333333;
  padding: 30px;
  display: flex;
  z-index: 7;
}

header img {
  position: absolute;
  left: 0.5%;
  top: 5px;
  border-radius: 50%;
  width: 50px;
}

header p
{
  position: absolute;
  text-align: center;
  align-items: center;
  left: 50%;
  top: -6px;
  color: red;
  font-size: clamp(20px, 3.5cqw, 22px);
  transform: translateX(-75%);
}

header a {
  position: absolute;
  top: 5px;
  background-color: white;
  border: none;
  color: red;
  padding: 15px clamp( 10px, 3vw, 32px);
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: clamp(5px, 3.5cqw, 16px);
  right: 25px;
  transform: translateX(-70%);
}

@media only screen and (max-height: calc(350px + 175vw) ) {
  footer
  {
    position: absolute;
    top: calc(350px + 175vw);
    right: 0;
    width: 100%;
    background-color: #333333;
    padding: 30px;
  }
}

@media only screen and (min-height: calc(350px + 175vw) ) {
    footer
  {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 100%;
    background-color: #333333;
    padding: 30px;
    display: flex;
  }
}

p2
{
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
}

h1
{
  font-family: Kalnia;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: red;
  font-size: clamp(33px, 4vw, 45px);
}

.imgLigneUn
{
  position: absolute;
  top: 175px;
}

.imgLigneDeux
{
  position: absolute;
  top: 200px;
  transform: translateY(100%);
}

.imgLigneTrois
{
  position: absolute;
  top: 225px;
  transform: translateY(200%);
}

.imgLigneQuatre
{
  position: absolute;
  top: 250px;
  transform: translateY(300%);
}

.imgLigneCinq
{
  position: absolute;
  top: 275px;
  transform: translateY(400%);
}

.imgLigneSix
{
  position: absolute;
  top: 300px;
  transform: translateY(500%);
}

.imgLigneSept
{
  position: absolute;
  top: 325px;
  transform: translateY(600%);
}


.imgLigneHuit
{
  position: absolute;
  top: 350px;
  transform: translateY(700%);
}

.imgLigneNeuf
{
  position: absolute;
  top: 375px;
  transform: translateY(800%);
}

.imgLigneDix
{
  position: absolute;
  top: 400px;
  transform: translateY(900%);
}

.imgGauche
{
  position: absolute;
  left: 5%;
}

.imgMillieu
{
  position: absolute;
  left: 37.5%;
}

.imgDroite
{
  position: absolute;
  left: 70%;
}

.hide {
  display: none;
}

.image
{
  width: 25vw;
  height: 25vw;
  border-radius: 15%;
  animation: 1s ease-in apeare;
  transition: box-shadow 0.5s ease-out;
}

.image:hover
{
  box-shadow: 5px 5px 7px 3px #000000;
}

.image:active
{
  box-shadow: inset 4px 4px 15px 0px #000000;
}

@keyframes apeare {
  from{
    opacity: 0%;
  }
  to{
    opacity: 100%;
  }
