/* tribute-footer.css */
:root {
    --font-fam: 'Poppins', sans-serif;

    --font-color: rgb(231, 231, 231);
    --background-back: black;
    --header: rgba(40, 38, 40, 0.6);
    --background-box: rgb(30, 29, 29);
    --box-shadow-main: rgb(70, 69, 69);
    --border-main: grey;
    --color-faeden: #FFC857;
    --color-pfoten: #40E0D0;
    --color-pixel: #9B5DE5;
    --color-aromen: #FF6347;
    --color-box: #1f2426;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--border-main);
    height: 5vh;
    padding: 5px 15px;
    box-sizing: border-box;
    background: var(--header);
    bottom: 0;

}