body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  color: white;
}

h1 {
  background: #7F7FD5;
  background: -webkit-linear-gradient(to right, #91EAE4, #86A8E7, #7F7FD5);
  background: linear-gradient(to right, #91EAE4, #86A8E7, #7F7FD5);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  height: 100%;
  display: flex;
}

#toolbar {
  display: flex;
  flex-direction: column;
  padding: 5px;
  width: 70px;
  background-color: #202020;
}

#toolbar * {
  margin-bottom: 6px;
  margin-top: 0px;
}

#toolbar label {
  font-size: 12px;
}

#toolbar input {
  width: 50%;
}

#toolbar button {
  background-color: #1565c0;
  border: none;
  border-radius: 2px;
  color: white;
  padding: 2px;
}

#toolbar button:hover {
  background-color: #0a3e7a;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 2px;
  cursor: pointer;
}

#toolbar button:active {
  background-color: #032347;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 2px;
  cursor: pointer;
}