:root {
  --bg-color: hsl(217, 54%, 11%);
  --card-color: hsl(216, 50%, 16%);
  --line: hsl(215, 32%, 27%);
  --white: hsl(0, 0%, 100%);
  --cyan: hsl(178, 100%, 50%);
  --soft-blue: hsl(215, 51%, 70%);
}
body {
  background-color: var(--bg-color);
  font-size: 18px;
  font-family: "Outfit", sans-serif;
  height: 100vh;
}
.container {
  background-color: hsl(216, 50%, 16%);
  max-width: 375px;
  margin: auto;
  padding: 30px;
  border-radius: 1.5rem;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  -ms-border-radius: 1.5rem;
  -o-border-radius: 1.5rem;
  transform: translateY(10%);
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  -o-transform: translateY(10%);
}
.container img {
  max-width: 100%;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}
.container .image {
  position: relative;
  padding: 0;
}
.container .image div {
  width: 100%;
  height: 23.5rem;
  background-color: hsl(178, 100%, 50%, 0.5);
  z-index: 99999;
  position: absolute;
  top: 0;
  opacity: 0;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .image:hover div {
  opacity: 1;
  cursor: pointer;
}
.container .name {
  color: var(--white);
}
.container .name h2 {
  word-spacing: 1rem;
  padding-left: 0.25rem;
  font-weight: 500;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.container .name h2:hover {
  color: var(--cyan);
  cursor: pointer;
}

.container .name p {
  color: var(--soft-blue);
  padding-left: 0.25rem;
  font-weight: 300;
  line-height: 30px;
}
.container ul {
  padding: 1rem 0 1rem 0rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--line);
}
.container ul li {
  list-style: none;
  color: var(--soft-blue);
  display: flex;
  align-items: center;
  font-weight: 500;
}
.container ul li img {
  padding-right: 0.25rem;
}
.container ul li:nth-child(1) {
  color: var(--cyan);
}
.container .maker img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 0.05rem solid white;
}
.container .maker {
  color: var(--white);
  display: flex;
  justify-content: flex-start;
  font-weight: 400;
}
.container .maker p {
  padding-left: 1rem;
}
.container .maker span:nth-child(1) {
  color: var(--soft-blue);
}
.container .maker p .name {
  transition: 0.3;
  -webkit-transition: 0.3;
  -moz-transition: 0.3;
  -ms-transition: 0.3;
  -o-transition: 0.3;
}
.container .maker .name:hover {
  color: var(--cyan);
  cursor: pointer;
}
.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
