body {
    background-color: rgb(49, 46, 46);
    color: rgb(49, 31, 1);
    background-image: url('../img/paper.jpeg');
    font-family: 'Meie Script', cursive;
    font-weight: 600;
    font-size: 20pt;

    /* stretch the backgrond image to page width */
    background-size: cover;
}

strong {
    font-family: 'Nova Script', cursive;
}


input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    width: 15rem;
    background-image: url('../img/slider.png');
    background-size: cover;
    height: 1.2rem;
    box-shadow: 0px 0px 12px 0px rgba(33, 22, 0, 0.8);
}

/* style input knob with an image */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 2.5rem;
    height: 2.5rem;
    background-image: url('../img/knob_gem.png');
    background-size: cover;
    cursor: pointer;
    
}

.wrapper {
    display: flex;
    flex-direction: column;

}

.sfx {
    margin-bottom: 12px;
    gap: 12px;
}

.sfx-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sfx-controls {
    display: flex;
    width: 100%;

    /* Adding gap between selements */
    gap: 12px;

    /* Make all elements have equal width and fill the whole width */
    flex: 1;

}


.sfx-title {
    padding-left: 0px;
}

button {
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 24px;
    padding-bottom: 24px;
    flex: 1;
    background-color: rgb(101, 98, 98);
    border-radius: 8px;
    /* color: rgb(33, 21, 0); */
    color: '#FFD700';
    font-size: 20pt;
    background-image: url('../img/leather.jpeg');
    /* font-family: 'Meie Script', cursive; */
    font-family: 'Nova Script', cursive;
    border: 4px solid rgb(49, 31, 1);
    box-shadow: 0px 0px 8px 0px rgba(33, 22, 0, 0.5);
}

/* highlight pressed button */
button:active {
    border: 4px solid rgb(214, 187, 105);
}

footer {
    /* stick to bottom */
    position: fixed;
    bottom: 0;
    /* center text */
    text-align: center;
}