/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  font-family: "Special Elite", sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
}

header {
  background: #0C0E12
  text-align: left;
  margin-left: 20px;
  margin-right: 20px;
 
}

.container {
  display: flex;
  flex-direction: column;
  align-items: left;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  background: #ffffff
  border-radius: 1px;
  border-color: white;
  
}

canvas {
  background-color: #0C0E12;
  background-size: cover;
  border: 1px solid #0C0E12;
  box-shadow: 0 10px 20px rgba(16, 16, 16, 0.567);
}

.controls {
  margin-top: 10px;
  color: #fff;
}

label {
  font-weight: bold;
  margin-right: 5px;
  color: #fff;
  border-color: white;
}

input[type="color"],
input[type="range"] {
  margin-right: 10px;
}

button {
  padding: 10px 20px;
  background-color: #0C0E12;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0C0E12;
}

button:focus {
  outline: #fff;
}