@media screen and (max-width: 479px) {
  nav ul {
    display: none;
  }

  .hamburger-menu {
    display: flex;
    cursor: pointer;
  }

  .hamburger-menu svg {
    fill: white;
  }

  .mobile-navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: hsl(226, 100%, 20%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  .mobile-navbar-menu.hidden {
    display: none;
  }

  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-logo img {
    width: 146px;
  }

  .close-mobile-menu {
    background: none;
    border: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    gap: 24px;
  }

  .mobile-nav-links li a {
    color: white;
    font-size: 24px;
    font-family: "PT Serif";
    text-decoration: none;
  }
}
