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

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(216, 50%, 16%);
  font-family: "Outfit", serif;
  padding: 100px 20px;
}

.card-container {
  width: 290px;
  height: 500px;
  padding: 20px;
  background-color: hsl(215, 32%, 27%);
  border-radius: 3%;
}

header {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
  cursor: pointer;
}
header:hover .view {
  display: block;
}
header:hover .overlay {
  opacity: 0.5;
}
header .main-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
}
header .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: hsl(178, 100%, 50%);
  opacity: 0;
  border-radius: 10px;
}
header .view {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
  color: hsl(0, 0%, 100%);
}
section .title {
  display: flex;
  align-items: center;
  gap: 5px;
}
section .title p {
  font-weight: 600;
}
section .text {
  opacity: 50%;
}
section .detail-info {
  display: flex;
  justify-content: space-between;
}
section .detail-info .ethereum span {
  color: hsl(178, 100%, 50%);
  font-weight: 600;
}
section .detail-info .date {
  opacity: 70%;
}
section .detail-info .ethereum, section .detail-info .date {
  gap: 5px;
  display: flex;
  align-items: center;
}

.line {
  width: 100%;
  height: 1.5px;
  background-color: white;
  opacity: 50%;
  margin: 15px 0px;
}

footer {
  display: flex;
  align-items: center;
  gap: 5px;
  color: hsl(0, 0%, 100%);
}
footer img {
  width: 100%;
  max-width: 2rem;
  border: 1px solid hsl(0, 0%, 100%);
  border-radius: 50%;
}
footer p {
  opacity: 50%;
}/*# sourceMappingURL=index.css.map */