body {
  color: white;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter;
  background-color: hsl(0, 0%, 8%);
}
.container {
  width: 350px;
  background-color: hsl(0, 0%, 12%);
  padding: 40px;
  text-align: center;
  border-radius: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.img-holder {
  width: fit-content;
  margin: auto;
}
.img-holder img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.person-info {
  margin: 25px 0;
  font-weight: 400;
  font-size: 14px;
}
.person-info h2 {
  margin-bottom: 8px;
}
.person-info span{
  color: hsl(75, 94%, 57%);
  font-weight: 600;
}
p {
  margin-bottom: 25px;
}
.stacked-buttons button {
  display: block;
  width: 100%;
  padding: 15px;
  margin-top: 15px;
  color: white;
  background-color: hsl(0, 0%, 20%);
  border: none;
  border-radius: .5rem;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}

.stacked-buttons button:hover, .stacked-buttons button:active {
  background-color: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 8%);
}
