html {
  font-size: 10px;
}

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

body {
  font-family: "Outfit", sans-serif;
  background-color: hsl(217, 54%, 11%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
}

img {
  width: 100%;
}

a {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
}
a:hover {
  color: hsl(178, 100%, 50%);
}

.nft-img {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  cursor: pointer;
}
.nft-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 255, 247, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nft-img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.8rem;
  height: 4.8rem;
  background-image: url("../images/icon-view.svg");
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nft-img:hover::before, .nft-img:hover::after {
  opacity: 1;
}

.card {
  padding: 2.4rem;
  width: 98%;
  max-width: 35rem;
  color: hsl(215, 51%, 70%);
  background-color: hsl(216, 50%, 16%);
}
.card h1 {
  font-size: 2.2rem;
  color: hsl(0, 0%, 100%);
  padding-block: 2.4rem 1.2rem;
}
.card p {
  font-size: 1.8rem;
}

.price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  padding-block: 1.6rem;
  border-bottom: 1px solid hsl(215, 32%, 27%);
}
.price img {
  width: 1.6rem;
}
.price .eth {
  color: hsl(178, 100%, 50%);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.price .eth img {
  width: 1.1rem;
  height: 1.8rem;
}
.price .days {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.creator {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-block: 1.6rem 0.8rem;
}
.creator img {
  width: 3.3rem;
  border-radius: 50%;
}/*# sourceMappingURL=main.css.map */