html {
  height: 100%;
}

body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  color: black;
  background-position: center;
  background-size: 200px;
  background-repeat: repeat;
  cursor: none;
}

.toolbar {
  height: 40px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 4px;
  box-sizing: border-box;
  cursor: default;
  width: 800px;
  margin: auto;
}
.toolbar button, .toolbar select {
  cursor: pointer;
}
.toolbar .color-picker {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.toolbar .color-picker .color-preview {
  width: 24px;
  height: 24px;
  background: black;
  border-style: inset;
}
.toolbar .color-picker .brush-color {
  height: 100%;
}

.instructions {
  width: 800px;
  padding-top: 12px;
  margin: auto;
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.instructions #logTag {
  background: white;
  border-style: inset;
  overflow-y: auto;
  flex: 1;
}

.paw-cursor {
  height: 32px;
  width: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  outline: 1px solid black;
  z-index: 1000;
}

.content {
  height: 100%;
  width: 100%;
  position: relative;
  background: #ccc;
}
.content canvas {
  background: white;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  opacity: 1;
  transition-property: opacity;
  transition-duration: 1s;
  display: block;
  margin: auto;
  outline: 1px solid black;
}/*# sourceMappingURL=home.css.map */