
*{
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}


  
  h1 {
    margin: 0;
    font-size: 36px;
  }
  
  .container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
    position: relative;
    top: 8vh;
    z-index: -1;
  }
  
  .recipe-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .recipe-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
  }
  
  .recipe-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
  }
  
  .recipe-item h2 {
    margin: 0;
    font-size: 20px;
    padding: 10px;
    min-width: 200px;
  }
  
  .recipe-item p {
    margin: 0;
    padding: 10px;
    color: #777;
  }
  
  .recipe-item a {
    background: #26282e;
    color: #fff;
    min-width: 150px;
    padding: 10px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    transition: background 0.3s ease;
  }
  
  .recipe-item a:hover {
    background: #1e3799;
  }
  
  @media screen and (max-width: 768px) {
    .container {
      max-width: 90%;
    }
    .recipe-item {
      flex-direction: column;
    }
  
    .recipe-item img {
      width: 100%;
      height: auto;
      margin-bottom: 10px;
    }
  
    .recipe-item h2 {
      font-size: 20px;
      padding: 0;
      margin-bottom: 10px;
    }
  
    .recipe-item p {
      font-size: 14px;
      margin-bottom: 10px;
    }
  
    .recipe-item a {
      width: 100%;
      text-align: center;
    }
  }

  .nav-list {
    list-style: none;
    display: flex;

  }
  
  .nav-list li {
    letter-spacing: 3px;
    margin-left: 32px;
  }
  
  .mobile-menu {
    display: none;
    cursor: pointer;
  }
  
  .mobile-menu div {
    width: 32px;
    height: 2px;
    background: #fff;
    margin: 8px;
    transition: 0.3s;
  }
  
  @media (max-width: 999px) {
    body {
      overflow-x: hidden;
    }
    .nav-list {
      position: absolute;
      top: 8vh;
      right: 0;
      width: 50vw;
      height: 92vh;
      background: #23232e;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      transform: translateX(100%);
      transition: transform 0.3s ease-in;
    }
    .nav-list li {
      margin-left: 0;
      opacity: 0;
    }
    .mobile-menu {
      display: block;
    }
  }
  
  .nav-list.active {
    transform: translateX(0);
  }
  
  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
  }
  
  .mobile-menu.active .line2 {
    opacity: 0;
  }
  
  .mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
  }

  a.logo {
    background-image: linear-gradient(to right,#e63b32,#e66532, #e6a732);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 30px;
    letter-spacing: 4px;
  }

  a{
    text-decoration: none;
    color: #fff;
  }
  
  a:hover {
    opacity: 0.7;
  }
  
  .logo {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 4px;
  }
  
  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
    background: #000000;
    height: 8vh;
    position: fixed;
    width: 100%;
  }