body {
  background: rgb(240, 212, 197);
  margin: 1rem;
  padding: 1rem;
  max-width: 1000px;
  margin: 2rem auto;
  font-family: "Open Sans", sans-serif;
}

@keyframes welcome {
  0% {
    background-position: left;
  }
  100% {
    background-position: right;
  }
}

h1 {
  text-align: center;
  color: transparent;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 50pt;
  background-size: 300%;
  background-image: linear-gradient(
    45deg,
    brown,
    rgb(199, 144, 43),
    rgb(199, 193, 152),
    red
  );
  -webkit-background-clip: text;
  animation: welcome 4s infinite alternate;
}

p {
  text-align: center;
  color: rgb(145, 95, 4);
  font-size: 20pt;
}

nav {
  border-bottom: 2px solid orange;
}

ol {
  padding-left: 0;
}

.crumb {
  margin-right: 2em;
  display: inline;
}

a {
  color: rgb(145, 95, 4);
}

a:visited {
  color: rgb(241, 92, 92);
}

input {
  display: block;
}

img {
  width: 1000px;
  margin-top: 20pt;
}
