@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/* global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: inherit;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  min-height: 100vh;
  font-family: 'Bebas Neue', cursive;
  background-color: whitesmoke;
}

h1 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: #3a3a3a;
  font-size: 4rem;
  letter-spacing: 0.5rem;
  text-align: center;
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
}

.loader img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Image container */
.image-container {
  margin: 1rem 30%;
}

.image-container img {
  width: 100%;
  margin-top: 0.5rem;
}

/* Media query */
@media only screen and (max-width: 50em) {
  h1 {
    font-size: 2.2rem;
  }

  .image-container {
    margin: 1rem;
  }
}
