:root {
  --darkBlue: #19313e;
  --cream: #f9ecde;
  --emerald: #40755e;
  --gold: #956d3c;
  --bronze: #634625;
}

body {
  margin: 0;
  padding:0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: var(--darkBlue);
  font-family: sans-serif;
}
.card {
  position: relative;
  width: 335px;
  height: 500px;
}
.img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .5s;
  clip-path: circle(70.8% at 50% 50%);
}
img {
  width: 100%;
}
.card:hover .img {
  clip-path: circle(23% at 50% 20%);
}
.content {
  position: absolute;
  left: 0;
  bottom: 50px;
  text-align: center;
}
h2 {
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  color: var(--gold);
}
p {
  margin-bottom: 25px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--gold);
}
a {
  display: inline-block;
  text-decoration: none;
  background-color: var(--emerald);
  color: var(--cream);
  padding: 5px 10px;
  text-transform: capitalize;
}
h2,p,a {
  opacity: 0;
  transition: .3s;
  transform: translateY(20px);
}
.card:hover h2,
.card:hover p,
.card:hover a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .2s;
}