:root {
  --plyr-color-main: #FF70A6;
  --plyr-video-background: #000;
}

html,
body {
  height: 100%;
  background: #000;
}

body {
  display: grid;
  place-items: center;
  margin: 0;

  color: white;
  font-family: sans-serif;

  touch-action: pan-x pan-y;
  overscroll-behavior: none;

  overflow: hidden;
}

.plyr {
  width: 100%;
  height: 100%;
}

#actions {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 3rem;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 1rem;

  box-sizing: border-box;
  padding: 1rem;

  background: linear-gradient(to bottom, #FF70A6, transparent 110%);
}

#actions button {
  background: #FF70A6;
  color: white;
  border: none;
  outline: none;
  border-radius: 0.5rem;
  padding: 0.5rem;

  cursor: pointer;
}
