@font-face {
  font-display: swap;
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300;
  src: url("./assets/fonts/outfit-v11-latin-300.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  src: url("./assets/fonts/outfit-v11-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  src: url("./assets/fonts/outfit-v11-latin-600.woff2") format("woff2");
}

:root {
  --primary-blue-500: hsl(215, 51%, 70%);
  --primary-cyan-400: hsl(178, 100%, 50%);

  --neutral-blue-950: hsl(217, 54%, 11%);
  --neutral-blue-900: hsl(216, 50%, 16%);
  --neutral-blue-800: hsl(215, 32%, 27%);
}

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

html,
body {
  background: var(--neutral-blue-950);
  height: 100%;
}

body {
  align-content: center;
  font-family: "Outfit", Arial, Helvetica, sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

main {
  background: var(--neutral-blue-900);
  border-radius: 15px;
  margin-bottom: 20px;
  width: min(calc(100% - 48px), 327px);
  margin-inline: auto;
}

.wrapper {
  padding: 25px;
}
.img__container {
  position: relative;
  width: 100%;
}

.eye-icon,
.nft__img {
  border-radius: 10px;
}

.eye-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.img__container:hover .eye-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(178 100% 50% / 0.5);
}

h1 {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
}

p {
  color: var(--primary-blue-500);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

.stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
  border-bottom: 1px solid var(--neutral-blue-800);
  font-size: 15px;
  font-weight: 600;
}

.stats .stats__item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stats__item--id {
  color: var(--primary-cyan-400);
}

.stats__item--est {
  color: var(--primary-blue-500);
}

.author {
  color: var(--primary-blue-500);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  font-weight: 400;
  font-size: 15px;
}

.author__img {
  width: 32px;
  border: 1px solid white;
  border-radius: 50px;
}

.author__name {
  color: white;
}

.author__name:hover,
h1 span:hover {
  color: var(--primary-cyan-400);
}

.attribution {
  font-size: 11px;
  text-align: center;
  color: #fff;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
