/* styles.css */
body {
    font-family: 'Gabarito', sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
}

nav li {
    display: inline;
    margin: 0 20px;
}

nav a {
    font-family: 'Gabarito', sans-serif;
    color: #fff;
    text-decoration: none;
}

.main-content {
    background-color: #fff;
    margin: 20px;
    padding: 20px;
    font-family: 'Gabarito', sans-serif;
}

.soundboard {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.sound-button {
    width: 160px;
    height: 60px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.sound-button.active {
    background-color: #0056b3;
}

.stop-instruction {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    text-align: center;
}
