header {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(47, 47, 47, 0.4);
    background-color: #f9f9f9;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0 20px;
    transition: transform 0.3s ease-in-out;
  }
  header img {
    height: 110px;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.25s ease-in-out;
    z-index: 998;
  }
  nav.active {
    right: 0;
  }
  nav a {
    font-weight: bold;
    transition: color 200ms;
    padding: 15px;
    align-content: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
  }
  nav a:hover {
    color: #87CEFA;
  }
  .menu-toggle,
  .menu-close {
    display: block;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
  }
  .menu-close {
    position: absolute;
    top: 5px;
    right: 25px;
  }
  .menu-toggle.hidden {
    display: none;
  }
  
  @media (min-width: 1200px) {
    header{
        height: 130px;
    }
    header img {
        height: 160px;
      }
    .menu-toggle,
    .menu-close {
      display: none;
    }
    nav {
      position: static;
      flex-direction: row;
      height: auto;
      width: auto;
      background: none;
      gap: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
  