

#shrine {
    text-align: center;
    padding: 20px;
}
#title { 
   text-align: center;
  text-shadow: 1px 1px 1px #000, 
               3px 3px 5px beige; 
}

#ribbons {
    list-style: none;
    padding: 0;
}
#ribbons li {
    display: inline-block;
    margin: 5px;
    padding: 5px;
    background-color: red;
    color: red;
}

#ribbons li:hover {
    color: white; 
    opacity: 1; 
    transform: scale(1.1);
    text-shadow: 1px 1px 1px #000, 
               3px 3px 5px beige; 
}
#offerings, #candles {
    margin-top: 20px;
}
#candle-area div {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: yellow;
    margin: 2px;
}

button {
  padding: 3px;
    font-size: 16px;
    color: white;
    
    background-color: #000000; 
    border: none;
    cursor: pointer;
    border-radius: 5px;
}


button:hover {
    background-color: #e6e6e6;
}
#mute-button {
    background-color: #000000; 
    padding: 3px;
    font-size: 16px;
    color: white;
    border: none;
    cursor: pointer;
     border-radius: 5px;
}

#mute-button.active {
    background-color: #e6e6e6; 
}