@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

:root {
  /* ### Primary */

  --soft-blue: hsl(215, 51%, 70%);
  --cyan: hsl(178, 100%, 50%);

/* ### Neutral */

  --very-dark-blue1 : hsl(217, 54%, 11%);
  --very-dark-blue2 : hsl(216, 50%, 16%);
  --very-dark-blue3 : hsl(215, 32%, 27%);
  ---white: hsl(0, 0%, 100%);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Outfit', sans-serif;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: var(--very-dark-blue1);
}
.card {
  width: 250px;
  padding: 20px;
  background-color: var(--very-dark-blue2);
  border-radius: 8px;
  color: var(---white);
  box-shadow: 0 0 30px var(--cyan);
}
.card .img {
  position: relative;
  transition: .4s;
}
.card .img img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.card .img .vision {
  position: absolute;
  width: 100%;
  height: calc(100% - 15px);
  background-color: hsl(178deg 100% 50% / 40%);
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  opacity: 0;
}
.card .img:hover .vision {
  opacity: 1;
  cursor: pointer;
}

.card > h2 {
  font-size: 18px;
}
.card > p {
  margin: 15px 0;
  font-size: 13px;
  color: var(--soft-blue);
}
.card .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}
.card .info span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}
.card .info span:first-child {
  color: var(--cyan)
}
.card .info span:last-child {
  color: var(--soft-blue)
}
hr {
  border: none;
  border-top: 1px solid var(--very-dark-blue3);
  margin: 15px auto;
}
.card .creation {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.card .creation img {
  width: 24px;
  height: 24px;
  border: 2px solid var(---white);
  border-radius: 50%;
}
.card .creation p {
  font-size: 12px;
  color: var(--soft-blue);
}
.creation p span {
  color: var(---white);
}