body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(217, 54%, 11%);
  font-family: "Outfit", sans-serif;
  height: 100vh;
  margin: 0;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: hsl(216, 50%, 16%);
  border-radius: 20px;
  max-width: 300px;
  padding: 20px;
  box-shadow: 0px 20px 6px 20px hsl(217, 50%, 10%);
}

.image-cover,
.view {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.image-cover {
  position: relative;
  z-index: 0;
}

.container-cover {
  position: relative;
}

.view {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(178, 100%, 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.view:hover {
  position: absolute;
  opacity: 0.8;
  cursor: pointer;
}

h3 {
  color: hsl(0, 0%, 100%);
}

.description {
  color: hsl(215, 51%, 70%);
  font-size: 18px;
  margin: 0 0 30px 0;
  font-weight: 300;
}

.info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid hsl(215, 32%, 27%);
  padding-bottom: 20px;
}

.value {
  color: hsl(178, 100%, 50%);
}

.time-left {
  color: hsl(215, 51%, 70%);
}

.value,
.time-left {
  display: flex;
  gap: 5px;
  font-weight: 300;
}

.author {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: hsl(0, 0%, 100%);
  gap: 10px;
}

.profile-pic {
  border-radius: 100%;
  width: 30px;
  height: 30px;
  border: 1px solid hsl(0, 0%, 100%);
}

.profile-name {
  display: flex;
  gap: 5px;
}

.profile-name:hover,
h3:hover {
  color: hsl(178, 100%, 50%);
  cursor: pointer;
}
