/* Global Styling */
body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #fff;
  background-color: #000;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Header styling */
.header {
  text-align: center;
  margin: 20px 0;
}

.header h1 {
  font-size: 2.5rem;
  color: #00ffcc;
}

.header p {
  font-size: 1rem;
  color: #bbb;
}

/* Controls Section */
.controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.control {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

label {
  font-size: 1rem;
  margin-right: 10px;
}

input[type="range"] {
  width: 300px;
  appearance: none;
  height: 8px;
  border-radius: 5px;
  background: linear-gradient(90deg, #ff007b, #00ffcc);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #00ffcc;
}

.buttons {
  margin-top: 10px;
}

button {
  background-color: #00ffcc;
  color: #000;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #00bbaa;
}

button:active {
  background-color: #008866;
}

/* Canvas Wrapper */
.canvas-wrapper {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #00ffcc;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff007b, #00ffcc);
}

canvas {
  display: block;
  background-color: #000;
  border-radius: 10px;
}

/* Footer Styling */
.footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #bbb;
}

.footer p {
  margin: 0;
}