#events-container {
    padding-bottom: 3vw;
}
#home-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5vw;
    justify-content: center;
}
#home-buttons button {
    height: 5vw;
    width: 15vw;
    font-size: 2vw;
    font-weight: bold;
    border: none;
    background-size: cover;
    background-color: rgb(220, 42, 29);
    border-radius: 4vw;
    /*background-blend-mode: hard-light;
    --gradient-color: linear-gradient(rgba(255, 170, 114, 0.75), rgba(115, 42, 0, 0.729));*/
}
/*
#about {
    background-image: var(--gradient-color), url('../img/kelly_and_michelle.jpeg');
}
#song-list {
    background-image: var(--gradient-color),  url('../img/bob2.jpeg');
}
#events {
    background-image: var(--gradient-color),  url('../img/dave2.jpeg');
    background-position: center;
}
#videos {
    background-image: var(--gradient-color),  url('../img/michelle_and_sam.jpeg');
    background-position: center;
}*/

@media (max-width: 500px) {  
    #home-buttons {
        flex-direction: column;
    }
    #home-buttons button {
        height: 10vw;
        width: 40vw;
        font-size: 4vw;
        border-radius: 8vw;
    }
}