@font-face {
  font-family: 'Prime';
  src: url('../fonts/Prime-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: none;
}

#controls {
  position: absolute;
  z-index: 3;
  bottom: 45px;
  right: 37px;
}

#volume-toggle {
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2) url('../img/volume.svg') no-repeat center;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background-size: cover;
  background-clip: content-box;
}

#volume-toggle.mute {
  background-image: url('../img/volume-mute.svg');
}

#volume-toggle.ready {
  background-color: rgba(43, 255, 0, 0.7);
  background-image: url('../img/checkmark.svg');
  border: 3px solid rgba(43, 255, 0, 0.3);
}

#video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

#loading-video_youtube_iframe {
  height: 100%;
}