body {
  display: grid;
  justify-content: center;
  align-content: start;
  padding-top: 15vh;
  min-height: 100vh;
  margin: 0;
  text-align: center;
  background-color: #FFB867;
  box-sizing: border-box;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image: url('pattern.svg');
  background-repeat: repeat;
  background-size: 150px;

  opacity: 0.03;
  pointer-events: none;

  z-index: 0;
}

h1 {
  font-family: "Caprasimo";
  font-size: 3rem;

  margin: 0;
}

#logo {
  position: relative;
  z-index: 100;
  width: 10rem;
  margin-bottom: 5rem;
}

#flames {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
}
