footer {

    background-color: var(--footer-background);  
    bottom: 0px;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
}

.footer-wrapper {
    display: flex;
    background: var(--footer-background);
    flex-direction: column;
    max-width: 1320px;
    padding: 16px;
 
}

.footer-line {
    display: block;
    width: 100%;
    height: 8px;
    background: linear-gradient(
        90deg,#15e4b7,
        #0b8369 50%,#e4be15
    );
}


