@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  background-color: #111;
  color: #fff;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.lists {
  /* this negative grants our effect so that the lists "appear" just a little bit */
  /* note that now it may trumble over the feature movies, so to avoid actual colision of the texts we wil margin-bottom the "featured--horizontal" */
  margin-top: -150px; 
}

footer {
  margin: 50px 0;
  text-align: center;
}

.loading {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99; /* above all but the header */
  background-color: #000;
  /* centering: */
  display: flex;
  justify-content: center;
  align-items: center; 
}