section.content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

article {
  border: 4px solid #742d56;
  display: inline-block;
  height: 300px;
  margin: 2px auto;
  overflow: hidden;
  width: 280px;
}
article figure {
  background: url(../images/gwen.png) no-repeat center top;
  background-size: 100%;
  height: 440px;
  margin: 0px;
  padding: 0px;
  position: relative;
  transition: all 0.5s ease-in-out;
  align-items: center;
  display: flex;
  justify-content: center;
}
article figure div {
  background-color: rgba(0, 0, 0, 0.8);
  top: -100px;
  padding: 20px 0px;
  position: absolute;
  transition: all 0.6s 0.2s ease-in;
  text-align: center;
  width: 300px;
}
article figure div button {
  border: 1px solid #d94d9b;
  border-radius: 20px;
  background-color: #000;
  color: #d94d9b;
  font-size: 1em;
  padding: 10px;
  width: 120px;
}
article figure div button:hover {
  cursor: pointer;
  background-color: #d94d9b;
  border: 1px solid #000;
  color: #000;
}
article:hover figure {
  cursor: pointer;
  background-size: 108%;
}
article:hover figure div {
  top: 0px;
}
