/*(main BG)*/
/*(card BG)*/
/*(line)*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap");
* {
  box-sizing: border-box;
}

body {
  background-color: hsl(217, 54%, 11%);
  font-family: "Outfit", sans-serif;
  margin: 0;
}

.app {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 99% 1%;
}

.nft-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nft {
  background-color: hsl(216, 50%, 16%);
  padding: 1.5em;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 1em;
  box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.0952917);
}

.images-container {
  position: relative;
  border-radius: 1em;
  height: 19rem;
  background-color: hsl(178, 100%, 50%);
  cursor: pointer;
}
.images-container .nft-icon {
  position: absolute;
  right: 8rem;
  bottom: 8rem;
  visibility: hidden;
}

.nft-img {
  width: 19rem;
  border-radius: 8px;
}
.nft-img:hover {
  opacity: 0.5;
}

.nft-img:hover + .nft-icon {
  visibility: visible;
}

.heading {
  color: hsl(0, 0%, 100%);
  font-size: 1.3em;
}
.heading:hover {
  color: hsl(178, 100%, 50%);
  cursor: pointer;
}

.text {
  color: hsl(215, 51%, 70%);
  width: 19rem;
  font-size: 1.1em;
}

.price-time {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.7em;
}
.price-time .price-div {
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.price-time .price-div p {
  color: hsl(178, 100%, 50%);
}
.price-time .time-div {
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.price-time .time-div p {
  color: hsl(215, 51%, 70%);
}

.avatar-div {
  display: flex;
  align-items: center;
  padding: 0.7em;
  border-top: 1px solid hsl(215, 32%, 27%);
  gap: 1em;
}

.avatar-img {
  width: 2rem;
  border: 1px solid hsl(0, 0%, 100%);
  border-radius: 50%;
}

.avatar-text {
  color: hsl(215, 51%, 70%);
  margin: 0;
}
.avatar-text span {
  color: hsl(0, 0%, 100%);
}
.avatar-text span:hover {
  color: hsl(178, 100%, 50%);
  cursor: pointer;
}

.attribution {
  font-size: 0.7rem;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

@media only screen and (max-width: 380px) {
  .images-container {
    height: 17.4rem;
    width: 17.4rem;
  }
  .nft-img {
    width: 17.4rem;
  }
  .text {
    width: 15rem;
  }
}/*# sourceMappingURL=main.css.map */