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

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

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%);
}

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

@media only screen and (max-height: 890px) {
    footer
  {
    position: absolute;
    top: 860px;
    right: 0;
    width: 100%;
    background-color: #333333;
    padding: 30px;
    display: flex;
  }
}

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

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

.toutlesaudio
{
  position: absolute;
  top: 175px;
  --tailleAudio: 100vh;
  animation: 1s ease-in apeare;
}

.cover
{
  position: absolute;
  top: 175px;
  right: 5%;
  width: 30vw;
  height: 30vw;
  border-radius: 15%;
  animation: 1s ease-in apeare;
}

@media only screen and (max-width: 480px) {
  .cover
  {
    visibility: hidden;
  }
}

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