#buttons{
    background-color: #F495B7;
    border-style: outset;
    border-color: #ef4880;
    border-width: 5px;
    clear: both;
    text-align: center;
    box-sizing: border-box;
    margin-left: 12.5%;
    margin-right: 12.5%;
    margin-bottom: 3%;
    margin-top: inherit;
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
    max-width: 75%;
    height: fit-content;
    row-gap: 3px;
    column-gap: 3px;
    box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: box-shadow .3s ease-in-out;
}

#buttons:hover {
    box-shadow: 0 0 15px 5px #F0164A;
}