
@font-face {
  font-family: Yeseva One;
  src: url(./YesevaOne-Regular.ttf);
}
html {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Yeseva One, serif;
  background-color: whitesmoke;
}

h1 {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  letter-spacing: 0.4rem;
}

/*<<<< LOADER >>>>*/

.page-loader {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(255,255,255,0.4);
}
.page-loader img {
  position: fixed;
  top: 50%;
  left: 50%;  
  /* the anchor point f the image is in the top right corner, use transform: translate to move it*/
  transform: translate(-50%, -50%);

}

/*<<<< IMAGE CONTAINER >>>>*/

.image-container {
  margin: 10px 30%;

}

.image-container img {
  width: 100%;
  margin-top: 5px;
}

/*<<<< MEDIA QUERIES >>>>*/

@media screen and (max-width: 800px){
  h1 {
    font-size: 1.5rem;
  }

  .image-container {
    margin: 10px;
  }
}