/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

/* Set core body defaults */
html {
  font-size: 18px;
}
body {
  background: linear-gradient(to right, #f3fbd8, #e9ebff);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
}
.content {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
}