@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Roboto+Slab:wght@100..900&display=swap");

body {
  font-family: "Merriweather", serif;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container img {
  width: 75vh;
  align-items: center;
  margin-top: calc(100vh / 9);
}

@media screen and (max-width: 1024px) {
  .container {
    justify-content: center;
    justify-items: center;
  }
  .container img {
    margin-top: calc(100vh / 7);
    width: 100%;
  }
  .container h1 {
    font-size: 2rem;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .container {
    justify-content: center;
    justify-items: center;
  }
  .container img {
    margin-top: calc(100vh / 5);
    width: 100%;
  }
  .container h1 {
    font-size: 2rem;
    text-align: center;
  }
}
