@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
:root {
  --Blue-500: hsl(215, 51%, 70%);
  --Cyan-400: hsl(178, 100%, 50%);
  --Blue-950-main-BG: hsl(217, 54%, 11%);
  --Blue-900-card-BG: hsl(216, 50%, 16%);
  --Blue-800-line: hsl(215, 32%, 27%);
  --White-color: hsl(0, 0%, 100%);
}

body {
  display: flex;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Outfit";
  background-color: var(--Blue-950-main-BG);
}

.container {
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  background-color: var(--Blue-900-card-BG);
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.equilibrum {
  width: 260px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.equilibrum img {
  display: block;
  width: 100%;
  border-radius: 6px;
}

.equilibrum::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 255, 255, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

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

.equilibrum:hover::before,
.equilibrum:hover::after {
  opacity: 1;
}

h3 {
  font-size: 20px;
  color: var(--White-color);
}

.note {
  font-size: 16px;
  color: var(--Blue-500);
}

.details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.details-1 {
  display: flex;
  gap: 7px;
  align-items: center;
}
.details-1 p {
  color: var(--Cyan-400);
  font-weight: 400;
}
.details-2 {
  display: flex;
  gap: 7px;
  align-items: center;
}
.details-2 p {
  color: var(--Blue-500);
  font-weight: 400;
}
.line {
  height: 1px;
  margin-top: 2px;
  background-color: var(--Blue-800-line);
}

footer {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer img {
  width: 30px;
  height: 30px;
  border: 1px solid var(--White-color);
  border-radius: 50%;
}

footer p {
  color: var(--Blue-500);
}
footer span {
  color: white;
  font-weight: 500;
}
