/* Footer */

footer {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 16vh;
    display: flex;
    /*flex-direction: row;*/
    justify-content: center;
    align-items: center;
    position: relative;

    color: white;
    background-color: #FFDC5E;
}

.footer-letter {
    width: 100%;
    font-size: 1.1rem;
}

.credits {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Media queries */

@media (max-width: 992px) {

    footer {
        padding: 20px;
        height: 14vh;
    }

    .footer-letter {
        font-size: 0.7rem;
    }

}