* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

header {
  position: fixed;
  width: 100vw;
  height: 3rem;
  background: #5c3f23;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header .logo a {
  color: #e6c74d;
  font-size: 25px;
  font-weight: 600;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

nav .menu {
  display: flex;
  flex-wrap: wrap;
}

nav .menu li {
  display: inline;
  margin: 0 15px;
}

nav .menu a {
  color: #fefefd;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

nav .menu a:hover {
  text-decoration: underline;
}

article {
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 4rem;
  min-height: 100vh;
}

@media only screen and (max-width: 60rem) {
  header {
    height: 8rem;
  }

  article {
    padding-top: 8rem;
  }
}


article main {
  max-width: 40em;
  margin-left: auto;
  margin-right: auto;
  color: #2d2e33;
  font-size: 18px;
  padding: 1rem;
}

article main section {
  width: 100%;
}

article main h1 {
  color: #312e30;
  font-size: 26px;
  margin: 1rem 0 0;
}

article main p {
  margin-top: 30px;
}


article main ul {
  padding-left: 2rem;
}

article main li {
  list-style-type: disclosure-closed;
}

footer {
  width: 100vw;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #5c3f23;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer__content {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  color: #fefefd;
  font-size: 14px;
  font-weight: 500;
}
