@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background-color: #000;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

nav .logo {
  height: 70px;
}

.accueil {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.accueil img {
  max-height: 600px;
  animation: battement 1.2s ease-in infinite;
}
@keyframes battement {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.03);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.03);
  }
  75% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.accueil h1 {
  font-size: 5rem;
  margin-bottom: 75px;
  color: #1654d0;
}
.accueil h2 {
  margin-bottom: 75px;
  color: #333;
}
.accueil a {
  text-decoration: none;
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}
.accueil a:hover {
  background-color: #333;
  color: #fff;
}

.chanson {
  display: flex;
  align-items: center;
  margin: 15px;
}
.chanson .image {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 320px) {
  .chanson .image {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .chanson .image {
    display: flex;
  }
}
.chanson .image h1 {
  margin-bottom: 40px;
}
.chanson .image h2 {
  margin-top: 30px;
  color: #333;
}
.chanson .image img {
  max-width: 100%;
  border-radius: 10px;
  height: 500px;
}

.liste-chanson .list {
  height: 700px;
  max-height: 55vh;
  overflow-y: scroll;
}
@media screen and (min-width: 320px) {
  .liste-chanson .list {
    width: 300px;
  }
}
@media screen and (min-width: 600px) {
  .liste-chanson .list {
    width: 550px;
  }
}
@media screen and (min-width: 800px) {
  .liste-chanson .list {
    width: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .liste-chanson .list {
    width: 600px;
  }
}
.liste-chanson .list::-webkit-scrollbar {
  width: 10px;
}
.liste-chanson .list::-webkit-scrollbar-track {
  background: #ffffff;
}
.liste-chanson .list::-webkit-scrollbar-thumb {
  background: #1654d0;
}
.liste-chanson .list::-webkit-scrollbar-thumb:hover {
  background: #d1d1d1;
}

.lecteur-audio {
  height: 20px;
}/*# sourceMappingURL=style.css.map */