* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3.125rem;
  background-color: #0D192C;
}

.attribution {
  font-size: 0.6875rem;
  text-align: center;
  color: #FFFFFF;
}
.attribution a {
  color: #8BACD9;
}

.main-container {
  font-family: "Outfit";
  width: 21.875rem;
  display: flex;
  flex-direction: column;
  background-color: #15263F;
  border-radius: 15px;
  padding: 1.5rem;
  gap: 1.5rem;
}

.nft-image {
  position: relative;
}
.nft-image img {
  width: 100%;
  border-radius: 15px;
}
.nft-image:hover .overlay {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(178, 100%, 50%, 0.5);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.overlay img {
  width: 3rem;
}

.nft-name {
  font-size: 1.375rem;
  line-height: 125%;
  color: #FFFFFF;
  font-weight: 600;
}
.nft-name:hover {
  color: hsl(178, 100%, 50%);
  cursor: pointer;
}

.nft-info {
  font-size: 1.125rem;
  line-height: 145%;
  color: #8BACD9;
  font-weight: 300;
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nft-price {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: hsl(178, 100%, 50%);
}

.nft-time {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #8BACD9;
  font-weight: 300;
}

.creator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 300;
}
.creator img {
  width: 2.0625rem;
  height: 2.0625rem;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
}
.creator span {
  color: #8BACD9;
}
.creator p {
  color: #FFFFFF;
}

hr {
  border-color: #2E405A;
}

@media (max-width: 768px) {
  .main-container {
    width: 18rem;
    padding: 1.25rem;
    gap: 1.25rem;
  }
  .nft-name {
    font-size: 1.125rem;
  }
  .nft-info {
    font-size: 1rem;
  }
}
@media (max-width: 375px) {
  .main-container {
    width: 16rem;
    padding: 1rem;
    gap: 1rem;
  }
  .nft-name {
    font-size: 1rem;
  }
  .nft-info {
    font-size: 0.875rem;
  }
}/*# sourceMappingURL=sass.css.map */