body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 100px;
}

button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
}

#startButton {
    background-color: #eeee14; /* Yellow */
    color: black;
}

#buzzButton {
    background-color: #440cbb; /* Purple */
    color: white;
}

#stopButton {
    background-color: #f44336; /* Red */
    color: white;
}

#output {
    margin-top: 50px; /* Add margin to the text */
}

.controls {
    margin: 20px 0;
}

.speed-control {
    margin: 15px 0;
}

#speedSlider {
    width: 200px;
    margin: 0 10px;
    vertical-align: middle;
}