
/*
Ici, c'est le fichier des options graphiques.
Si vous avez besoin d'un truc, faîtes moi signe.
*/


/*
↓ Juste ici, c'est quelques lignes de code pour remettre à 0 les options de tous les navigateurs
*/


html, body, p, h1{
  margin: 0;
  padding: 0;
}

/*
↓ Body, c'est le fond du site. Il contient donc la couleur de fond et les marges de notre page.
*/

main{
  display: flex;
  flex-direction: row;
  height: 100vh;
}

section{
  width: 50%;
}

h1{
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  margin: 7px 0;
}
p{
  font-family: sans-serif;
  font-size: 14px;
}
audio{
  margin: 42px 0
}
.image{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdf6e3;
}
.image img{
  object-fit: cover;
  height: 100%;
}
.player{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
}
.couverture{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px;
  width: 100%;
  background: #e6e4dd;
}
ul{
  padding: 0;
  margin-top: auto;
}
li{
  display: block;
  margin-bottom: 3.5px;
}



/*
↓ Style de paragraphe
*/

.display{
  font-weight: 400;
  font-style: normal;
  font-size: 56px;
  letter-spacing: -0.1rem;
}
.title{
  font-weight: 400;
  font-size: 18px;
}
a:link, a:visited{
  display: block;
  color: #ac997c;
  font-size: 23px;
  font-style: italic;
  font-family: serif;
  text-decoration: none;
  padding: 7px 0;
  -webkit-transition: 1s;
  transition: 1s;
}
@media (hover) {
  a:hover {
    padding: 7px 14px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}
.chiffre{
  font-style: normal;
  font-family: sans-serif;
}



/*
↓ Responsive Design
*/

@media screen and (max-width: 800px) {
  main {
    flex-direction: column;
  }
  section{
    width: 100%;
    height: 50%;
  }
  .couverture{
    height: 100vh;
  }
  .image img{
    width: 100%;
  }
}