body {
  font-family: sans-serif;
  font-size: 16px;
  background-color: black;
}

.player {
  display: flex;
  justify-content: center;
  position: relative;
  
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.content {
  display: flex;
  justify-content: center;
  position: relative;
}

.video-js {
  position: absolute;
}

.js-video-hidden {
  z-index: -1;
}

#transition-toggle {
  border: none;
  font-size: 1.5rem;
  padding: 10px;
  border-radius: 0px 0px 10px 10px;
  cursor: pointer;
  background: #7d53de;
  color: white;
  transition: background-color 0.1s ease-in-out;
}

#transition-toggle:hover {
  background: #3f2a9f;
}