footer {
    margin-top: 30px;
    width: 100%;
    border-radius: 5px;
    position: sticky;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: bottom 0.5s ease-out;
    height: 110px;
}

@media only screen and (max-width: 900px) {
    footer {
        height: auto;
        width: 95%;
    }
}

footer .footerContent {
    background-color: rgb(26, 24, 24);
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 5px;

}
@media only screen and (max-width: 900px) {
    footer .footerContent {
        font-size: 12px;
        padding: 5px;
        gap: 5px;
    }
}

footer .footerContent div {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footerContent h4 {
    text-align: center;
}

a {
    color: white;
}

a:visited {
    color: white;
}

footer a {
    text-decoration: underline;
}