/*
==========
Footer styles.
==========
*/

.footer{
    width: 100%;
    height: 70px;
    padding: 1em;
    background-color: var(--darkblue-color);
}

.footer__content{
    width: 100%;
    height: 100%;
    display: flex;
    gap: 1em;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer__content .copyright{
    width: max-content;
    height: auto;
    text-align: left;
    color: var(--white-color);
}

.footer__content a{
    color: var(--white-color);
    font-weight: bold;
    text-decoration: none;
    transition: all ease-in-out .3s;
}

.footer__content a:hover{
    color: var(--white-color-transparent);
    font-weight: bold;
    text-decoration: none;
    transition: all ease-in-out .3s;
}

.footer__content .developer{
    width: max-content;
    height: auto;
    text-align: right;
    color: var(--white-color);
}
