#buttonContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 60vw;
    position: fixed;
    bottom: 0;
}

.buttons {
    width: 100%;
    height: 80px;
    place-content: center;
    text-align: center;
    text-decoration: none;
    background-color: #E8E8E8;
    font-size: 20px;
    color: white;
}

.buttons:hover {
    background-color: #AAAAFF;
    color: black;
}

@media screen and (max-width: 900px) {
    #buttonContainer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100vw;
        position: fixed;
        bottom: 0;
    }
}