body {
    background-color: rgb(50, 50, 50);
    color: white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

label {
    font-size: 24px;
}

button {
    color: white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    background-color: rgb(60, 60, 60);
    box-shadow: 0 5px rgb(50, 50, 50);
}

button:hover {
    background-color: rgb(65, 65, 65);
    box-shadow: 0 5px rgb(55, 55, 55);
}

#yt {
    display: block;
    margin: 20px auto 20px auto;
    height: 300px;
}

#songA, #songB, #songC {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    margin-bottom: 30px;
}

#songA > *, #songB > *, #songC > * {
    padding: 10px;
    border-radius: 10px;
    background-color: rgb(30, 30, 30);
    box-shadow:
    0 10px rgb(25, 25, 25);
}

#song-name {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 10px 0 10px 0;
    background-color: rgb(15, 15, 15);
    text-align: center;
    font-size: 36px;
    transform: translateY(100%);
    transition: all 1s;
    z-index: 100;
}

.sliders {
    display: flex;
    gap: 20px;
    text-wrap: nowrap;
    align-items: center;
}