html,
body,
#app {
  height: 100vh;
  margin: 0px;
  overflow: hidden;
  padding: 0px;
  width: 100vw;
}

body {
  background-color: #1E88E5;
}
body h1, body a {
  color: #5a5a5a;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  margin: 0px;
  padding: 0px;
}
body .context-menu-item {
  background-color: white;
  border: none;
  border-radius: 100px;
  box-shadow: 0px 0px 24px 6px rgba(0, 0, 0, 0.08);
  height: 50px;
  outline: none;
  padding: 0px;
  position: absolute;
  transition: left 0.25s, top 0.25s, opacity 0.25s;
  width: 50px;
}
body .context-menu-item:hover {
  cursor: pointer;
  transform: scale(1.05);
  z-index: 2;
}
body .context-menu-item:hover h1 {
  opacity: 1;
  right: -10px;
}
body .context-menu-item:hover i {
  color: #1E88E5;
}
body .context-menu-item:active {
  transform: scale(1);
}
body .context-menu-item h1 {
  background-color: #282828;
  border-radius: 4px;
  color: white;
  font-size: 0.8em;
  font-weight: 700;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  right: 0px;
  text-transform: uppercase;
  top: 50%;
  transform: translate(100%, -50%);
  transition: all 0.25s;
  z-index: 2;
}
body .context-menu-item i {
  font-size: 1.5em;
}
body #app #instructions {
  left: 50%;
  opacity: 0.6;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
body #app #instructions h1 {
  color: white;
  font-size: 1em;
}
body #app #youtube-link {
  bottom: 0px;
  color: white;
  font-size: 1.25em;
  font-weight: 700;
  margin: 20px;
  position: fixed;
  right: 0px;
  text-align: center;
  text-transform: uppercase;
}