body {
    background-color: darkblue;
}

#buttonContainer {
    width: 100%;
    padding: 2% 5% 0 5%;
}

.listButton {
    width: 200px;
    height: 112.5px;
    border-radius: 115px;

    /* backdrop-filter: blur(2px) url(#myFilter); */
    background-color: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255,255,255,.1);

    transition: all 0.4s;
    filter: url(#myFilter);
}

.listButton:hover {
    transform: scale(1.15, 1.15);
}
