#footer-placeholder {
    z-index: 0;
    margin-top: 1em;
    height: 20vh;
    
    box-shadow: 0em -0.1em 0.4em  #333;
}

.footer-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    padding: 0em 2em;
    gap: 1em;
}

.footer-container p {
    margin-block-start: 0em;
    margin-block-end: 0em;
}

#footer-signature {
    text-align: center;
}

#footer-copyright {
    width: 100%;
    display: flex;
    flex-direction: row;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    text-align: center;

    gap: 1em;
}

@media screen and (max-width: 1366px) {
    #footer-placeholder {
        height: 26vh;
    }
}

@media screen and (max-width: 768px) {
    #footer-placeholder {
        height: 32vh;
    }    
}

@media screen and (max-width: 480px) {
    #footer-placeholder {
        height: 38vh;
    }    
}