@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: "Outfit", sans-serif;

   /* ### Primary */
   --Blue_500: hsl(215, 18%, 55%);
   --Cyan_400: hsl(178, 100%, 50%);

   /* ### Neutral */
   --Blue_950_main_BG: hsl(217, 54%, 11%);
   --Blue_900_card_BG: hsl(216, 50%, 16%);
   --Blue_800_line: hsl(215, 32%, 27%);
   --White: hsl(0, 0%, 100%);
}

body {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   background-color: var(--Blue_950_main_BG);
   color: var(--White);
}

.container {
   margin: 50px;
   background-color: var(--Blue_900_card_BG);
   border-radius: 15px;
   width: 350px;
}

.image-container {
   position: relative;
   width: 300px;
   margin: 20px 20px;
   cursor: pointer;
}

.img-equilibrium {
   width: 100%;
   border-radius: 10px;
   display: block;
}

.image-container::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: var(--Cyan_400);
   opacity: 0;
   border-radius: 10px;
   transition: opacity 0.3s ease;
}

.image-container::after {
   content: "";
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 48px;
   height: 48px;
   background-image: url("../images/icon-view.svg");
   background-repeat: no-repeat;
   background-position: center;
   opacity: 0;
   transition: opacity 0.3s ease;
}

.image-container:hover::before {
   opacity: 0.5;
}

.image-container:hover::after {
   opacity: 1;
}

h1 {
   font-size: 25px;
   margin: 0px 20px 10px;
   cursor: pointer;
}
h1:hover {
   color: var(--Cyan_400);
}
.container > p {
   color: var(--Blue_500);
   margin: 0px 20px 10px;
}

.box {
   display: flex;
   justify-content: space-between;
   padding-bottom: 20px;
   margin: 0px 20px 10px;
   border-bottom: 1px solid var(--Blue_800_line);
}
.box-ethereum {
   display: flex;
   align-items: center;
}
.box-ethereum img {
   margin-right: 10px;
}
.box-ethereum p {
   color: var(--Cyan_400);
}
.box-clock {
   display: flex;
   align-items: center;
}
.box-clock img {
   margin-right: 10px;
}
.box-clock p {
   color: var(--Blue_500);
}

.creator {
   display: flex;
   align-items: center;
   margin: 0px 20px 20px;
}
.img-avatar {
   width: 40px;
   margin-right: 15px;
}
.creator p:hover {
   color: var(--Cyan_400);
   cursor: pointer;
}
.creator p span {
   color: var(--Blue_500);
}

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