.sigmaweb-btn-among-us {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 15px;
  color: white;
  text-shadow: 2px 2px rgb(116, 116, 116);
  text-transform: uppercase;
  border: solid 2px black;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 17px;
  background-color: hsl(49deg 98% 60%);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.sigmaweb-btn-among-us:active {
  transform: scale(0.9);
  transition: all 100ms ease;
}

.sigmaweb-btn-among-us svg {
  transition: all 0.5s ease;
  z-index: 2;
  transform: scale(2.5) translate(-35%, 1.5px);
}

.sigmaweb-btn-among-us-play {
  display: inline-block;
  transition: all 0.5s ease;
  transition-delay: 300ms;
}

.sigmaweb-btn-among-us:hover svg {
  transform: scale(5.5) translate(70%);
}

.sigmaweb-btn-among-us-now {
  position: absolute;
  left: 0;
  transform: translateX(-100%);
  transition: all 0.5s ease;
  z-index: 2;
}

.sigmaweb-btn-among-us:hover .sigmaweb-btn-among-us-now {
  transform: translateX(30px);
  transition-delay: 300ms;
}

.sigmaweb-btn-among-us:hover .sigmaweb-btn-among-us-play {
  transform: translateX(200%);
  transition-delay: 300ms;
}