body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
}

.circle {
  width: min(40vw, 40vh);
  height: min(40vw, 40vh);
  background-color: #BADA55;
  border-radius: 50%;
  transition: transform 0.15s ease;
  z-index: 10;
}

.circle:hover {
  transform: scale(1.15);
  transition: transform 0.2s ease-out;
}

.wave {
  position: absolute;
  bottom: 0;
  height: 50%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  transition: transform 0.2s ease;
  pointer-events: none;
  gap: 0;
}

.bar {
  flex: 1;
  pointer-events: none;
  width: 100%;
  height: 0;
  background-color: #ff8126;
  transition: height 0.1s ease-out;
  padding: 0;

}