header {
    background-color:white;
    padding:5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    height:100px;
    overflow: hidden;
  }

  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-left:80px;
  }

  .logo img {
    width:200px;
    height:200px;
    border-radius:10px;
  }



  .hamburger {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: none;
    z-index: 1001;
  }

  .hamburger span {
    background:black;
    position: absolute;
    height: 3px;
    width: 100%;
    transition: all 0.4s ease;
  }

  .hamburger span:nth-child(1) { top: 0; }
  .hamburger span:nth-child(2) { top: 9px; }
  .hamburger span:nth-child(3) { top: 18px; }

  .side-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 250px;
    background:#310b46;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    gap: 20px;
    padding-left: 30px;
    transition: right 0.5s ease;
    z-index: 1000;
  }

  .side-nav.show {
    right: 0;
  }

  .side-nav .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    color:white;
    cursor: pointer;
  }

  .side-nav a {
    color:white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
  }

  .side-nav a:hover {
    color:purple;
  }

  nav.desktop {
    display: flex;
    gap: 30px;
    margin-right:80px;
  }

  nav.desktop a {
    color:black;
    text-decoration: none;
    font-size: 18px;
  }

  nav.desktop a:hover {
    color: #ff00ff;;
  }

  @media (max-width: 768px) {
    nav.desktop {
      display: none;
    }

    .hamburger {
      display: block;
    }
  }