body {
  background-color: hsl(217, 54%, 11%);
  min-height: 100vh;
  ;
}
.card {
  width: 320px;
  height: 100%;
  max-height: 550px;
  background-color: hsl(216, 50%, 16%);
  padding: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px hsl(215, 32%, 27%);
}
.content{
  padding-left: 6px ;
}
.images{
  position: relative;
  width: 100%;
}
.equilibrium{
  width: 100%;
  border-radius: 1rem;
}
.equilibriumView{
position: absolute;
top: 50%; 
left: 50%;
transform: translate(-50%, -50%);
width: 20%;
height: 20%; 
box-shadow: 0px 0px 0px 140px rgba(0, 255, 247, 0.378);
background-color: rgba(0, 255, 247, 0.378);
opacity: 0;
transition: opacity 0.5 ease-in-out;
border-radius:1rem;
}
.images:hover .equilibriumView{
  opacity:1;
}
.card h2 { 
   font-family: 'Outfit', sans-serif;
   font-weight: 600;
   color: hsl(0, 0%, 100%);
}
.card h2:hover{
  color: hsl(178, 100%, 50%);
 transition: 0.5s;
}

.card p{
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: hsl(215, 51%, 70%);
}

.ethereum {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: hsl(178, 100%, 50%)
}

.days-left {
  font-family: 'Outfit', sans-serif;
  display: inline-flex;
  align-items: center;
  gap:4px;
  font-weight: 400;
  color: hsl(215, 51%, 70%);
}
.middle{
  display: flex;
  align-items: center;
  justify-content:space-between;
  gap: 1rem;
}
.custom-hr{
  border: 0;
  height:2px;
  background-color: hsl(215, 32%, 27%);
  margin-top: 18px;
}
.creator{
display: inline-flex;
align-items: center;
gap: 16px;
justify-content:space-between;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border:1px solid hsl(0, 0%, 100%);
}
.creation{
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: hsl(215, 51%, 70%);
}
.name{
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: hsl(0, 0%, 100%);
}
.name:hover{
  color: hsl(178, 100%, 50%);
  transition: 0.5s ;
}


@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/Outfit-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/Outfit-Medium.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("/assets/fonts/Outfit-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
