*:focus {
  outline: none !important; }

:root {
  --header-height: 80px;
  --font-size: small; }

html, body {
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  outline: none !important; }

#canvas-zone {
  height: calc(100% - var(--header-height));
  outline: none !important;
  touch-action: none; }

#mainCanvas {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  display: block;
  touch-action: none;
  outline: none !important; }

header {
  background: white;
  color: white;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-rows: 100%;
  grid-template-columns: 50px 201px 1fr 210px;
  position: relative;
  width: 100%;
  height: var(--header-height);
  font-family: "Roboto Mono", sans-serif;
  outline: none !important; }

#logo {
  height: var(--header-height);
  grid-column-start: 2;
  margin: auto; }

.divide-line {
  width: 100%;
  height: 1.5px;
  background-color: black; }

.sidebar {
  height: calc(100% - var(--header-height));
  width: 0;
  position: fixed;
  z-index: 1;
  top: var(--header-height);
  right: 0;
  background: black;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
  grid-template-columns: 50px 1fr 50px;
  grid-template-rows: 50px 20px 50px 20px 50px 1fr;
  display: grid; }

#btn {
  font-size: 35px;
  cursor: pointer;
  background-color: white;
  color: black;
  border: none;
  z-index: 2;
  grid-column-start: 4; }

.sidButton {
  background-color: black;
  color: white;
  font-size: large;
  font-family: "Roboto Mono", sans-serif;
  text-align: left; }

#visButton {
  grid-row-start: 1;
  grid-column-start: 2; }

#jawButton {
  grid-row-start: 3;
  grid-column-start: 2; }

#animationButton {
  grid-row-start: 5;
  grid-column-start: 2; }
