@font-face {
  font-family: "Shadows Into Light Two";
  src: url(../fonts/ShadowsIntoLightTwo-Regular.ttf);
}
@font-face {
  font-family: Lato;
  src: url(../fonts/Lato-Regular.ttf);
}

html, body {
  padding: 0;
  margin: 0;
  font-family: Lato, -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", Helvetica, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  height: 100%;
  font-size: 100%;
  background-color: hsla(30, 10%, 96%, 1);
  color: hsla(0, 0%, 0%, 0.98);
  transition: background-color 300ms, color 300ms;
}
p {
  color: hsla(0, 0%, 0%, 0.64);
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0 0 .5rem 0;
  text-align: center;
  transition: color 300ms;
}
h1 {
  font-family: "Shadows Into Light Two", cursive;
  font-size: 5rem;
  line-height: 1.3;
  margin: 0;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background: url(../images/stickers-background.svg) no-repeat center;
}
.container .inside {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 3rem;
  box-sizing: border-box;
  flex: 1;
  justify-content: center;
}
.container h1 {
  text-align: center;
}

@media (prefers-color-scheme: dark) {
  html, body {
    background-color: hsla(40, 10%, 20%, 1);
    color: hsla(0, 0%, 100%, 0.98);
  }
  p {
    color: hsla(0, 0%, 100%, 0.64);
  }
}
