* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  justify-content: center;
  font-family: sans-serif;
}
body {
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #1a1746 0%, #000078 80%);
}
h1 {
  font-size: 3em;
  gap: 1em;
  color: #ffe5b8;
}
h2 {
  font-size: 2em;
  gap: 1em;
  color: #fffed8;
}
.skip-nav {
  background-color: antiquewhite;
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 0.25rem 0.25rem;
  left: 0.5rem;
  position: absolute;
  transform: translateY(-120%);
  transition: transform 325ms ease-in;
  font-weight: 600;
}
.skip-nav:focus {
  transform: translateY(0);
}
.xmas {
  margin: 0;
  margin-bottom: 2em;
  padding: 4em;
  padding-bottom: 2em;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.button-cms {
  font-size: 2em;
  height: 4em;
  width: 10em;
  border: 0;
  align-items: center;
  border-radius: 2em;
  background-color: wheat;
  text-decoration: none;
  font-weight: 700;
}
.button-cms a {
  text-decoration: none;
  color: crimson;
}
.button-cms:hover {
  background-color: crimson;
  font-weight: 700;
  text-decoration: none;
}
.button-cms a:hover {
  color: aliceblue;
}
