html, body {
  height: 100%;
  margin: 0;
}

body {
  background-color: black;
  color: white;
  font-family: "Jersey 15", sans-serif;
}

.initialising {
  font-size: 2rem; 
  margin: 4rem; 
}

p, h3, li, img{
margin: 1rem; 
}

a {
color: white; 
text-decoration: none;
text-transform: uppercase;  
font-size: 2rem; 
margin: 2rem; 
}

a:hover {
text-decoration: underline;
}

a:focus {
text-decoration: underline; 
}

.card {
  display: flex;
}

#logo {
max-width: 30vw;
position: absolute; 
top: 1rem;  }

.leftside {
display: flex;
flex-direction: column;
margin-left: 1rem;  
}

.leftside img {
max-width: 50vw; 
height: auto; 
height: auto;  
}

.rightside {
display: flex; 
flex-direction: column; 
max-width: 40vw; 
}

figcaption {
margin: 1rem; 
position: absolute; }

h2 {
margin: 2rem; 
margin-left: 4rem; }

.genre {
text-align: center; }

.genre img {
max-width: 20vw; }

.banner, img {
width: 100vw; 
}

.dots::after {
  content: '.';
  display: inline-block;
  width: 1.5em;
  text-align: left;
  animation: dots-appear 3s steps(3, end) infinite;
}

@keyframes dots-appear {
  0%   { content: '.'; }
  40%  { content: '..'; }
  80% { content: '...'; }
}

/* Tablette : largeur ≥ 600px */
@media (min-width: 600px) {
 .initialising {
    font-size: 4rem;
    letter-spacing: 1rem; 
  }
  p, li {
font-size: 1.5rem; }
  h2 {
font-size: 3rem;}
  h3 {
font-size: 2rem; }
 }
 
 @media (min-width: 1024px) {
 .initialising {
    font-size: 6rem;
    letter-spacing: 1.5rem; 
  }

   #logo {
position: absolute; 
top: 45rem; 
}
   p, li {
font-size: 2rem; }
   h3 {
font-size: 3rem; }
   h2 {
font-size: 4rem; }
 }
 
 
  