html {
  height: 100%;
  background-color: green;
}

body {
  margin: 0px;
  height: 100%;
}

.danse {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.me {
  height: 50%;
}

.clickme {
  position: absolute;
  right: 650px;
  top: 50px;
}

.juicebox {
  height: 100%;
  user-select: none;
}

.juiceboxed {
  text-align: center;
  user-select: none;
  font-family: sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(to right, #e01eeb, #1cff64);
  -webkit-background-clip: text;
}

.marquee {
  --gap: 1rem;
  display: flex;
  overflow: hidden;
  user-select: none;
  min-width: 100%;
  gap: var(--gap);
}

.juiceboxes {
  flex-shrink: 0;
  display: flex;
  overflow: hidden;
  gap: var(--gap);
  animation: scroll 500ms linear infinite;
}

.reverse .juiceboxes {
  animation-direction: reverse;
}

.link {
  margin-top: 50px;
  font-family: sans-serif;
  font-weight: 700;
  color: magenta;
  text-decoration: underline;
  user-select: none;
}

.btext {
  margin-top: 50px;
  font-family: sans-serif;
  font-weight: 700;
  color: white;
  text-decoration: none;
  user-select: none;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
