.footer-container{
    display: flex;
    position: fixed;
    bottom: 0px;
    height: 35px;
    align-items: center;
    justify-content: center;
    width: 100vw;
    background-color: var(--hn-footer-background-color);
    z-index: 10;
}
.footer-content-container{
    width: 50%;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 13px;
}

@media(max-width: 800px){
    .footer-content-container {
        width: 90%;
    }
}
