:root {
  --plyr-color-main: #f7a44c;
  --plyr-font-family: "martian-mono-variable", monospace;
  --plyr-menu-background: rgba(0, 0, 0, 0.8);
  --plyr-menu-color: rgba(255, 255, 255, 0.9);
}

body {
  background-color: rgb(8, 7, 7);
  color: white;
  padding: 0;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection,
::-moz-selection {
  background: rgb(0, 174, 239);
  color: white;
}

a {
  color: currentColor;
  text-decoration: none;
}

header .logo {
  width: 200px;
  max-width: 40vh;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
}

.back {
  display: block;
  position: absolute;
  top: 3rem;
  right: 3rem;
  text-transform: uppercase;
  font-family: var(--plyr-font-family);
}

/* ul {
  font-family: var(--plyr-font-family);
  line-height: 1.5;
  margin-left: 1rem;
  margin-top: 6rem;
} */

main.video h1 {
  font-size: 1.5rem;
  font-weight: 200;
  font-family: var(--plyr-font-family);
  color: white;
  position: fixed;
  bottom: 3rem;
  left: 1rem;
  z-index: 999;
  text-shadow: #000 2px 2px 8px;
}

.actions {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.actions .btn {
  font-family: var(--plyr-font-family);
  padding: 0.5rem;
  padding-bottom: 0.3rem;
  text-align: end;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  text-shadow: #000 2px 2px 8px;
}

.plyr--video {
  max-height: 100vh;
  display: flex;

  /* vertical alignment */
  align-items: center;

  /* horizontal alignment (use this if you don't set full width of .plyr__video-wrapper) */
  justify-content: center;
}

/* .plyr__controls {
    display: none;
    } */
