canvas {
  width: 50%;
  height: 50%;
  overflow: hidden;
  display: block;
}

canvas.homepage {
  width: 100%;
}

canvas.editor-preview {
  width: 800px;
  height: 800px;
  border: 2px solid var(--red);
  border-radius: 10px;
}

canvas.editor-preview:hover {
  border-color: var(--brred);
}

textarea.editor {
  width: 100%;
  height: 800px;
  font-family: monospace;
  font-size: 14px;
  padding: 12px;
  box-sizing: border-box;
  border: 1px solid #777;
  border-radius: 4px;
  background: #1e1e1e;
  color: #ddd;
  outline: none;
  resize: vertical;
}
