*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  margin: 0;
  padding: 0;
  background-color: #ffc236;
}

article {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 3px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  color: #222;
  text-align: center;
  padding: 3em;
  max-width: 30rem;
}

article > * + * {
  margin-top: 1em;
}

h1 {
  font-weight: 400;
}

p {
  line-height: 1.5;
  font-style: italic;
}

ul {
  text-align: left;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover,
a:focus {
  color: #211252;
}
