body {
  padding: 0;
  overflow-x: hidden;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.shell {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  width: 100%;
}

.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

html,
body,
#root {
  height: 100%;
}

.loader {
  height: 200px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.oscilloscope {
  border-radius: 30px;
}
