@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
.container h1 {
  font-family: "Outfit";
  font-weight: 400;
  line-height: 125%;
  font-size: 22px;
}

.container p {
  font-family: "Outfit";
  font-size: 18px;
  line-height: 145%;
  font-weight: lighter;
}

.container .eth-price, .creator {
  font-family: "Outfit";
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}

body, .container, .creator {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

body {
  background-color: #0d192c;
  height: 100vh;
}

.container {
  border-radius: 15px;
  width: 350px;
  height: 596px;
  background-color: #15263f;
  padding: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.container img {
  width: 302px;
  border-radius: 8px;
}
.container h1 {
  color: white;
}
.container p {
  color: #8bacd9;
}
.container .price-time {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container .eth-price {
  color: #00fff8;
}
.container .eth-price::before {
  content: url("images/icon-ethereum.svg");
  padding-right: 10px;
}
.container .time {
  color: #8bacd9;
}
.container .time::before {
  content: url("images/icon-clock.svg");
}

.creator {
  flex-direction: row;
  gap: 8px;
  color: #8bacd9;
}
.creator .name {
  color: white;
}
.creator img {
  width: 33px;
  border: solid 1px white;
  border-radius: 50%;
  margin-right: 10px;
}

.hover:hover {
  cursor: pointer;
}
.hover:hover .image-wrapper {
  position: relative;
  max-width: 400px;
  color: white;
}
.hover:hover .image-wrapper img {
  width: 100%;
  height: auto;
  display: inline-block;
}
.hover:hover .image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(0, 255, 248, 0.5);
}
.hover:hover .icon::before {
  content: url("images/icon-view.svg");
  position: absolute;
  bottom: 120px;
  left: 130px;
}

h1:hover {
  cursor: pointer;
  color: #00fff8;
}

.name:hover {
  cursor: pointer;
  color: #00fff8;
}

/*# sourceMappingURL=style.css.map */
