/* Resets */
h1, h2, h3, h4, h5, h6 {
  margin: .2rem auto;
}
p {
  margin: .6rem auto;
}

/* Body */
body {
  background: chocolate;
  margin: auto;
  word-wrap: break-word;
}

/* Links */
a {
  color: firebrick;
  text-decoration: none;
}
a:visited {
  color: sienna;
}

/* Navigation */
nav ul {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  font-size: 1.25em;
  text-align: center;
}

/* Sections */
main, section {
  background: white;
  border: 1px solid sienna;
  margin: .5rem;
  margin-inline: 8vw;
  padding: .5rem 1rem;
}