.listen-stage{
  min-height: 60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:28px;
}

.listen-center{
  text-align:center;
}

.listen-figure{
  width:200px;
  height:200px;
  margin:auto;
}

.listen-figure img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.listen-text{
  font-size:2rem;
  font-weight:bold;
  margin-top:15px;
}

.bounce{
  animation:bounce 0.6s infinite alternate;
}

@keyframes bounce{
  from{ transform:translateY(0);}
  to{ transform:translateY(-10px);}
}