footer {
    display: flex;
    background-color: rgb(51, 51, 51);
    color: white;
    width: 100%;
    height: 150px;
    bottom: 0px;
    margin-bottom: 0px;
    position: absolute;
    text-align: center;
}

.footercontent {
    color: black;
    gap: 10px;
    padding: 15px;
    justify-content: center;
    align-self: flex-end;
    display: flex;
    width: 100%;
}

.footerbutton {
    margin: 0;
    padding: 0;
    color: white;
    font-size: 0.3em;
}

@media (min-width: 768px) {
    .footercontent {
    gap: 20px;
    }
    
    .footerbutton {
    margin: 0;
    padding: 0;
    color: white;
    font-size: 0.6em;
    }
}