*, ::before, ::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Slab", serif;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

a {
  text-decoration: none;
  display: block;
}

li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.center {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.5rem;
}

.bold {
  font-weight: 700;
}

.header {
  font-family: "Roboto Slab", serif;
  box-shadow: 0 -1px 4px #8a2e2e inset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111010;
  color: #fff;
  height: 4rem;
  position: relative;
  margin-bottom: 1.5rem;
  width: 100%;
}

.menu__toggle {
  cursor: pointer;
  width: 1.5rem;
  height: 1.2rem;
  background-image: linear-gradient(#fff 20%, transparent 20%, transparent 40%, #fff 40%, #fff 60%, transparent 60%, transparent 80%, #fff 80%);
  transition: all 0.8s;
}
.menu__toggle.rotate__toggle {
  transform: rotate(360deg);
}
@media screen and (min-width: 720px) {
  .menu__toggle {
    display: none;
  }
}

.menu {
  text-align: center;
  position: fixed;
  top: 4rem;
  left: 0;
  transform: translateX(100vw);
  transition: all 0.8s;
  width: 100vw;
  height: 100vh;
  background-color: #111010;
}
.menu.show {
  transform: translateX(0);
}
@media screen and (min-width: 720px) {
  .menu {
    position: static;
    transform: translateX(0);
    width: 50%;
    height: auto;
  }
}

@media screen and (min-width: 720px) {
  .menu__container {
    display: flex;
  }
}

@media screen and (min-width: 720px) {
  .menu__item {
    flex: 1 1 0;
  }
}

.menu__link {
  font-weight: 700;
  color: #fff;
  transition: box-shadow 0.5s;
  line-height: 4;
  box-shadow: inset 0 0 0 #111010;
}
.menu__link:hover {
  background-color: #c0690c;
  color: #2b2929;
  box-shadow: inset -6px 0 0 #fff, inset 6px 0 0 #fff;
}

.main {
  margin-bottom: 1rem;
}

.slider__img {
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background-color: #111010;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #fff;
  line-height: 1.5;
  margin-top: auto;
  width: 100%;
  display: grid;
}
.footer hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 480px) {
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer hr {
    display: none;
  }
}

.footer__right--paragraph {
  line-height: 1.5;
}

.footer__left--title h3 {
  text-decoration: underline;
}