* {
  box-sizing: border-box;
}
body {
  font-family: 'Outfit', sans-serif;
  background-color: hsl(217, 54%, 11%);
}
.container {
  background-color: hsl(216, 50%, 16%);
  width: 350px;
  position: relative;
  border-radius: 5px;
  padding: 15px;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}
.container .image img,
.container .image {
  width: 303px;
  border-radius: 5px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.container > .image::after {
  content: "";
  position: absolute;
  height: 0;
  width: 100%;
  background-color: hsla(178, 100%, 50%, 0.521);
  bottom: 0;
  left: 0;
  transition: 0.5s;
  text-align: center;
}
.container > .image:hover::after {
  content: url(../nft-preview-card-component-main/images/icons8-eye-30.png);
  height: 100%;
}
h3 {
  color: white;
  font-weight: 600;
  transition: 0.5s;
}
h3:hover {
  color: hsl(178, 100%, 50%);
}
p {
  font-size: 18px;
}
.container > p {
  color: hsl(215, 51%, 70%);
}
.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}
.info::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.5px;
  bottom: -20px;
  background-color: hsl(215, 32%, 27%);
}
.info span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.info span img {
  margin-right: 8px;
}
.info span:first-child {
  color: hsl(178, 100%, 50%);
}
.info span:last-child {
  color: hsl(215, 51%, 70%);
}
.footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: hsl(215, 51%, 70%);
}
.footer img {
  border-radius: 50%;
  width: 35px;
  border: 1px solid white;
  margin-right: 18px;
}
.footer span {
  color: white;
  margin-left: 3px;
  display: block;
  transition: 0.5s;
}
.footer span:hover {
  color: hsl(178, 100%, 50%);
}