:root {
    --default-font: Manrope;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* font-family: var(--default-font), sans-serif; */
    text-decoration: none;
    list-style: none;
}
  
  .header {
    position: sticky;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 20px hsla(207, 24%, 35%, 0.1);
    background-color: #ffffff;
    z-index: 2;
  }
  
  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
  }
  
  .logo a {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
  }

  
  .menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .menu a {
    display: block;
    padding: 7px 15px;
    font-size: 17px;
    font-weight: 500;
    transition: 0.2s all ease-in-out;
    color: #161616;
    margin-left: 30px;
  }
  

  
  .menu a:hover {
    opacity: 1;
    color: #e72bde;
  }
  
  .menu-icon {
    display: none;
    position: static;
    float: right;
  }
  
  #menu-toggle {
    display: none;
  }
  
  #menu-toggle:checked ~ .menu {
    transform: scale(1, 1);
  }
  
  @media only screen and (max-width: 950px) {
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;
      }

    .menu {
      flex-direction: column;
      background-color: #ffffff;
      align-items: start;
      position: absolute;
      top: 90px;
      left: 0;
      width: 100%;
      z-index: 3;
      transform: scale(1, 0);
      transform-origin: top;
      transition: transform 0.3s ease-in-out;
      box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }
  
    .menu a {
      margin-left: 12px;
    }
  
    .menu li {
      margin-bottom: 10px;
    }
  
    .menu-icon {
      display: block;
      color: #707070;
      font-size: 28px;
      cursor: pointer;
    }
  }
  