nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.627);
  z-index: 100;

  span {
    display: flex;
    align-items: center;
    justify-content: center;

    img {
      width: 40px;
      object-fit: contain;
      margin-right: 20px;
    }

    h2 {
      display: flex;
      flex-wrap: nowrap;
      font-size: 30px;
      color: black;
    }
  }

  ul {
    display: flex;
    list-style: none;
    gap: 30px;
    color: #008080 !important;

    a {
      text-decoration: none;
      color: black;
      font-size: 18px;
      transition: color 0.3s ease;
    }
  }

  .icons {
    display: flex;
    gap: 20px;
    font-size: 20px;
    color: #008080;
  }

  .nav-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #008080;
  }

  @media screen and (max-width: 900px) {
    span {
      img {
        width: 30px;
        margin-right: 10px;
        position: relative;
      }

      h2 {
        font-size: 25px !important;
      }
    }

    ul {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 80px;
      right: 0;
      width: 100%;
      background-color: #f4f4f4;
      padding: 20px 40px;
      text-align: right;
      width: fit-content;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.17);
      border-radius: 10px;
      z-index: 10000 !important;
    }

    .btn {
      display: none;
    }

    .nav-icon {
      display: block;
    }
  }
}
