nav {
  color: #5b432c;
  background: rgba(254, 251, 243, 1);
  font-family: "Tenor Sans";
}

.hamburger {
  display: none;
}

.hamburger img {
  width: 40px;
  height: 40px;
  margin: 1rem;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-header {
    display: flex;
    align-items: center;
  }
}

.logo-link {
  flex: 1;
  padding: 2rem;
  font-size: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links-container {
  width: 60%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

.nav-link {
  flex: 1;
  text-align: center;
  padding: 1rem;
  color: #5b432c;
  font-family: Raleway;
  font-weight: bold;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .logo-link {
    padding: 1rem;
    font-size: 2rem;
  }
  .nav-links-container {
    display: none;
  }
  .nav-link {
    flex: 0;
  }
  .mobile-show .nav-links-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(254, 251, 243, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    z-index: 100;
  }
}

footer {
  font-family: Raleway;
  background-color: #242424;
  color: white;
  padding: 2rem;
  font-size: 1.25rem;
  display: flex;
  align-items: flex-end;
}

footer .copyright {
  flex: 2;
  text-align: center;
}

footer .attribution {
  flex: 2;
  text-align: center;
}

footer .social-links {
  flex: 1;
  text-align: center;
}

footer .social-links .icons {
  margin-top: 2rem;
}

footer .social-links .icons img {
  width: 48px;
}

footer .heading {
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  footer {
    flex-direction: column-reverse;
    gap: 2rem;
    padding: 2rem 1rem;
    align-items: center;
  }
  footer .social-links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  footer .social-links .icons {
    margin-top: 0;
  }
  footer .heading {
    font-size: 1.5rem;
  }
  footer .copyright {
    font-size: 0.8rem;
  }
  footer .social-links .icons img {
    width: 32px;
  }
  footer .attribution {
    display: none;
  }
}
.mobile {
  display: none;
}
.desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
}
