footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 0.9vh;
    position: relative;
}

.footer__container {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Ubuntu Light, sans-serif;
    width: 100%;
    background: #121212;
}

.footer__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    list-style: none;
    gap: 20px;
} .footer__content li {
    width: 100%;
}

.footer__logo {
    background: url("../images/logo.svg") no-repeat center;
    background-size: contain;
    border: none;
    width: 100%;
    height: 100%;
    min-height: 35px;
}

.footer__rights {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 2vh;
    max-width: 1440px;
    width: 50vw;
    overflow: hidden;
}
.footer__rights:before {
    content: "© 2026 Error. All rights reserved.";
    font-weight: 300;
    font-size: 75%;
    color: rgba(255, 255, 255, 0.7);
}