@import url("https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap");

:root {
  --background: #fff;
  --color: #000;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  margin: 0;
  box-sizing: inherit;
}

body {
  height: 100dvh;
  width: 100dvw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-family: "Google Sans", sans-serif;
  background-color: var(--background);
  /* Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

.title {
  font-size: 4.8rem;
  font-weight: 500;
  text-align: center;
  font-style: italic;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .title {
    font-size: 12rem;
  }
}
@media (min-width: 1024px) {
  .title {
    font-size: 16rem;
  }
}
@media (min-width: 1280px) {
  .title {
    font-size: 20rem;
  }
}
@media (min-width: 1920px) {
  .title {
    font-size: 26rem;
  }
}
