@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Outfit:wght@300;400;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  width: 100vw;
  height: 100%;
  background-color: hsl(217, 54%, 11%);
}

.card {
  margin: 50px auto 50px auto;
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: hsl(216, 50%, 16%);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 0 50px 10px hsl(217, 54%, 11%);
}

.img {
  height: 300px;
  width: auto;
  border-radius: 10px;
  cursor: pointer;
}

.img:hover::before {
  content: "\f06e";
  font-size: 20px;
  background: hsla(178, 100%, 50%, 0.5);
}

.content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 10px;
  font-size: 18px;
  color: hsl(215, 51%, 70%);
}

.content a {
  text-decoration: none;
  width: 100%;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  color: hsl(0, 0%, 100%);
  margin: 15px 0;
}
.content a:hover {
  color: hsl(178, 100%, 50%);
}
.content p {
  width: 100%;
}

.details {
  display: flex;
  width: 100%;
  padding: 20px 0;
  justify-content: space-between;
  border-bottom: 1px solid hsl(215, 32%, 27%);
}

.details span {
  color: hsl(178, 100%, 50%);
}

.details span:hover {
  color: hsl(178, 100%, 50%);
}

.details p {
  color: hsl(215, 51%, 70%);
}

.fas {
  font-size: 15px;
  margin-right: 5px;
}

.creator {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: 20px;
  font-size: 18px;
  color: hsl(215, 51%, 70%);
}

.creator img {
  width: 50px;
  border-radius: 50%;
  border: 2px solid white;
  margin-right: 20px;
}

.creator p a {
  text-decoration: none;
  color: hsl(0, 0%, 100%);
}

.creator p a:hover {
  color: hsl(178, 100%, 50%);
}
