@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz@6..12&family=Nunito:wght@400;900&display=swap");
html {
  font-size: 16px;
}

body {
  background-color: hsl(162, 59%, 17%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  margin: 0;
  padding: 5rem 3rem; /* padding updated to rems */
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

h1 {
  font-size: 16vw;
  color: #d7f4e2;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  margin: 0;
  line-height: 1em;
}

p {
  color: #d7f4e2;
  font-family: "Nunito", sans-serif;
  font-size: 3rem;
  font-weight: 400;
}

.spacer {
  flex: 1;
}
