* {
  margin: 0;
}
::-webkit-scrollbar {
  width: 0; /* Remove scrollbar space */
  background: transparent; /* Optional: just make scrollbar invisible */
}

body {
  background-color: #2e2e2e;
  height: 100%;
  overflow-y: scroll;
  transition: background 3s ease;
}

.nav-body {
  height: 60px;
  display: flex;
  border-radius: 10px;
  margin-top: 1px;
  margin-left: 2px;
  margin-right: 2px;
  background-color: #2e2e2e;
  align-items: center;
  justify-content: space-between;
}

.nav-img {
  height: 70px;
  width: 70px;
  margin-left: 20px;
}

.nav-link-items {
  margin-right: 20px;
}

.nav-item {
  margin: 4px 16px;
  text-decoration: none;
  color: #fff;
  width: fit-content;
  font-family: "Courier New", Courier, monospace;
  -webkit-transition: all 0.5s ease; /* Safari and Chrome */
  -moz-transition: all 0.5s ease; /* Firefox */
  transition: all 0.5s ease;
}

.nav-item:hover {
  color: wheat;
}

.mob-menu-icon {
  display: none;
}

.mob-popup {
  display: none;
}

.heading-container {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
}

.heading-text {
  color: #fff;
  text-decoration: underline;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.tools-container {
  height: 500px;
  border: 1px solid #ffffff;
  margin: 0 40px;
  border-radius: 22px;
  background-color: transparent;
  overflow-y: scroll;
}

.tools-link {
  text-decoration: none;
  color: #000000;
}

.tools-feeds {
  height: fit-content;
  margin: 30px 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  background: #ffffff;
  justify-content: space-around;
  box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.6);
  -webkit-transition: all 1s ease; /* Safari and Chrome */
  -moz-transition: all 1s ease; /* Firefox */
  transition: all 1s ease;
}

/* Childs of tools-feeds */
.tool-img {
  height: 40px;
  width: 40px;
  border-radius: 100%;

  margin-left: -50px;
}

.tool-name {
  margin-left: -80px;
}

.tool-description {
  width: 70ch;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.space-divider {
  display: inline-block;
  border-left: 1px solid #ffffff;
  height: 10vh;
  margin: 0 -100px;
}

.tools-feeds:hover {
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  transform: scale(1.03);
  cursor: pointer;
}

@media screen and (max-width: 1092px) {
  .tools-feeds {
    flex-direction: column;
    margin: 16px 30px;
    text-align: center;
  }
  .tool-img {
    margin: 6px 0;
  }
  .tool-name {
    margin-left: 0px;
  }
  .tool-description {
    text-align: center;
  }

  .tool-purchase {
    margin-bottom: 10px;
  }

  .space-divider {
    height: unset;
    border-top: 1px solid #ffffff;
    border-left: none;
    margin: 20px 0;
    width: 100%;
  }

  .mob-popup {
    visibility: hidden;
  }
}

@media screen and (max-width: 768px) {
  .nav-link-items {
    display: none;
  }

  .mob-menu-icon {
    display: flex;
    height: 30px;
    width: 30px;
    margin-right: 20px;
    cursor: pointer;
  }

  .mob-popup {
    display: none;
    visibility: visible;
    background: #2e2e2e;
    width: 100vw;
    border-radius: 10px;
    margin-top: 1px;
    flex-direction: column;
    height: fit-content;
    justify-content: space-between;
  }

  .mob-nav-items-close {
    display: flex;
    cursor: pointer;
    align-self: flex-end;
    margin-right: 15px;
    margin-top: 15px;
  }

  .tool-description {
    width: 36ch;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 554px) {
}
