/* Footer */
footer {
    background-color: var(--color-contrast);
    border-top: 1px rgba(255, 255, 255, 0.12) solid;
}

#footer-bottom-line {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content:space-between;
    align-items:center;
    padding-top: 21px;
    padding-bottom: 21px;
    flex-wrap: wrap;
    color: rgba(201, 225, 233, 0.72);
}
#footer-bottom-line,
#footer-bottom-line p {
    font-size: clamp(1rem, 0.715rem + 0.594vw, 1.25rem);
}

@media only screen and (max-width: 1015px) { /* mobile */ 
    #footer-bottom-line {
        flex-direction: column;
    }
}