body {
  margin: 0;
  font-family: sans-serif;
  overflow-x: hidden;
}

.panel {
  position: relative;
  height: 100vh;
  background: #111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.word {
  position: absolute;
  font-size: 4rem;
  font-weight: bold;
  top: 50%;
}

.bottom {
  font-size: 4rem;
  font-weight: bold;
  position: relative;
  top: 50px;
}

.left {
  left: 50%;
  transform: translate(-100vw, -50%); /* Start off-screen */
}

.right {
  left: 50%;
  transform: translate(100vw, -50%); /* Start off-screen */
}

.jerseys {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100%;
}

.coming-soon {
  background: #111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  border: thin solid black;
}

.first {
  top: 0;
  opacity: 1;
}

.others {
  opacity: 0.5;
  position: absolute;
  top: 0;
}

.pin-spacer {
  background: #111;
}