body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  margin: 0;
  padding: 0;
  word-break: break-word;
}

div#container, body, html {
    width: 100%;
    height: 100%;
}

video {
  background: #222;
  margin: 0 0 20px 0;
  --width: 100%;
  width: var(--width);
  height: calc(var(--width) * 0.5625);
}

#player {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: #323232;
}

#playButton {
    width: 15%;
    max-width: 200px;
    cursor: pointer;
}

#Video {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    height: calc(100% - 55px);
}

#fullscreenButton {
    position: absolute;
    top: 75px;
    right: 25px;
    width: 32px;
    height: 32px;
}

#toucheControls {
    display: none;
}

#toucheControls.active {
    display: block;
}

.button {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: .25;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 250ms ease 0s;
}

.button.active {
    opacity: .5;
}

.button img {
    width: 80%;
    height: 80%;
}

#touchPad {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}
