* {
  box-sizing: border-box;
}

html {
  font-family: Roboto, sans-serif;
}

body {
  background: #f4f4f4;
  color: #ccc;
  margin: 0px;
}

canvas,
img,
svg {
  vertical-align: middle;
}

label {
  cursor: pointer;
  display: block;
}
label > input[type="radio"],
label > input[type="checkbox"] {
  margin-right: 5px;
  position: relative;
  top: -2px;
}

form {
  margin-bottom: 20px;
}

textarea {
  resize: vertical;
}

svg {
  vertical-align: middle;
}

.sidebar {
  background-color: #222;
  float: left;
  height: 100vh;
  overflow-y: auto;
  padding: 20px;
  position: relative;
  width: 250px;
  z-index: 1;
}

.container {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
  margin-left: 250px;
  overflow: auto;
}

.container.dark {
  background-color: #444;
}

.field + .field {
  margin-top: 20px;
}

.field > label {
  margin-bottom: 5px;
}

.input {
  background-color: #444;
  border: 0;
  border-radius: 4px;
  color: #fff;
  display: block;
  font-size: inherit;
  outline: 0;
  padding: 10px 14px;
  width: 100%;
}
