html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

canvas {
  display: block;
  border: 3px solid black;
  margin: 5px;
  /* padding-left: 1px; */
}

.toggleMovementButton {
  font-size: 15px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  background-color: transparent;
  width: 150px;
  height: 30px;
  cursor: pointer;
}

.toggleMovementButton:hover {
  background-color: purple;
  color: white;
}

.changeShapeButton {
  font-size: 15px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  background-color: transparent;
  width: 125px;
  height: 30px;
  cursor: pointer;
}

.changeShapeButton:hover {
  background-color: purple;
  color: white;
}

.resetShapeButton {
  font-size: 15px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  background-color: transparent;
  width: 120px;
  height: 30px;
  cursor: pointer;
}

.resetShapeButton:hover {
  background-color: purple;
  color: white;
}

.shortcutsButton {
  font-size: 15px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  background-color: transparent;
  width: 125px;
  height: 30px;
  cursor: pointer;
}

.shortcutsButton:hover {
  background-color: purple;
  color: white;
}

.shortcutText {
  font-weight: normal;
}

.shortcutsList {
  list-style-type: square;
}

.shortcutKey {
  /* font-family: 'Courier New'; */
  font-weight: bold;
  /* text-decoration: underline; */
}

.colorPicker {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* width: 50px; */
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.colorPicker::-webkit-color-swatch {
  /* border-radius: 5px; */
  border-radius: 50%;
  border: 2px solid black;
}

.colorPicker::-moz-color-swatch {
  border-radius: 15px;
  border: 2px solid black;
}

.bgColorPickerLabel {
  font-size: 17px;
}

.randomGradientButton {
  font-size: 15px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 100;
  background-color: transparent;
  width: 150px;
  height: 30px;
  cursor: pointer;
}

.randomGradientButton:hover {
  background-color: purple;
  color: white;
}

.gradientSlider {
  width: 94%;
  accent-color: purple;
  cursor: pointer;
}

.gradientSliderLabel {
  font-family: Arial, Helvetica, sans-serif;
}

.customGradientCheckbox {
  font-size: 17px;
  font-family: Arial, Helvetica, sans-serif; 
}

.customGradientCheckbox:checked {
  background-color: black;
}

.customGradientLabel {
  font-size: 17px;
  font-family: Arial, Helvetica, sans-serif; 
}

.applyGradientButton {
  font-size: 15px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  background-color: transparent;
  font-family: Arial, Helvetica, sans-serif; 
  width: 60px;
  height: 30px; 
  cursor: pointer;
}

.applyGradientButton:hover {
  background-color: purple;
  color: white;
}

.buttonGroup1 {
  border: 3px solid black;
}

.buttonGroup2 {
  border: 3px solid black;
}

.shortcuts {
  border: 3px solid black;
}

input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 5px;
  background-color: white;
  border: 2px solid black;
  cursor: pointer;
}

input[type=checkbox]:checked {
  background-color: purple;
  border: 2px solid black;
}

input[type=radio]:hover {
    cursor: pointer;
}

input[type=radio]:checked {
    accent-color: purple;
}
