body {
  background-color: hsl(217, 54%, 11%);
  font-family: 'Outfit', sans-serif;
  color: hsl(215, 51%, 70%);
}

.nft-card {
  background-color: hsl(216, 50%, 16%);
  border-radius: 15px;
  max-width: 350px;
}

.card-title {
  color: white;
  font-weight: 600;
}

.text-primary {
  color: hsl(178, 100%, 50%) !important;
}

.avatar {
  width: 35px;
  height: 35px;
  border: 1px solid white;
  border-radius: 50%;
}

.position-relative {
  cursor: pointer;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: hsla(178, 100%, 50%, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.view-icon {
  width: 40px;
}

.position-relative:hover .overlay {
  opacity: 1;
}

hr {
  border-color: hsl(215, 32%, 27%);
}
