* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
}

html {
  height: 100%;
  width: 100vw;
}

button,
input,
select {
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 10px #0000008a;
          box-shadow: 0px 0px 10px #0000008a;
}

body {
  height: 100%;
  max-width: 750px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr auto;
      grid-template-rows: auto 1fr auto;
  margin: 0 auto;
  background: deepskyblue;
  overflow: hidden;
}

body canvas {
  position: fixed;
  z-index: -1;
  top: 54px;
}

body header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto auto;
      grid-template-columns: 1fr auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: palegreen;
  padding: 12px;
  gap: 8px;
}

body header .response {
  margin-left: 5px;
}

body header img {
  margin-left: auto;
  height: 30px;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
  pointer-events: none;
}

body header img.mute {
  opacity: 1;
}

body header a {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  cursor: pointer;
}

body header a span {
  height: 0px;
  width: 30px;
  border-top: 2px solid black;
  pointer-events: none;
  -webkit-transition: all 250ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 250ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body header a.open span:nth-of-type(1) {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

body header a.open span:nth-of-type(2) {
  opacity: 0;
  visibility: hidden;
}

body header a.open span:nth-of-type(3) {
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body header .menu {
  z-index: 1;
  position: absolute;
  top: 63px;
  right: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  -webkit-box-shadow: 0px 0px 10px #0000008a;
          box-shadow: 0px 0px 10px #0000008a;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 250ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 250ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 250ms cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 250ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform: translateX(calc(100% + 20px));
          transform: translateX(calc(100% + 20px));
}

body header .menu.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

body header .menu ul {
  display: -ms-grid;
  display: grid;
  gap: 15px;
}

body header .menu ul li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5px;
}

body header .menu ul li select, body header .menu ul li .host {
  width: 180px;
}

body header .menu ul li #timeout {
  width: 50px;
}

body header .menu ul li button {
  width: 100%;
}

body main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

body main button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  height: 100%;
  max-height: 150px;
  width: 100%;
  max-width: 150px;
  -ms-grid-column-align: center;
      justify-self: center;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  border: 2px solid black;
  background: green;
  padding: 5px;
}

body main button.waiting {
  -webkit-animation: waiting 1.5s ease-in-out infinite;
          animation: waiting 1.5s ease-in-out infinite;
}

body main button img {
  pointer-events: none;
  width: 100%;
  padding: 10px;
}

body footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px;
  background: coral;
}

body footer .status {
  margin-left: 5px;
  color: red;
}

body footer .status.connected {
  color: green;
}

body footer button {
  font-size: 18px;
  margin-left: auto;
}

body footer button.hide {
  display: none;
}

@-webkit-keyframes waiting {
  50% {
    background-color: red;
  }
  100% {
    background-color: green;
  }
}

@keyframes waiting {
  50% {
    background-color: red;
  }
  100% {
    background-color: green;
  }
}
/*# sourceMappingURL=style.css.map */