@import url("/resources/css/colors.css");

footer {
    display: flex;
    align-items: end;
    justify-content: center;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--bg-color);
    padding-top: 1%;
    padding-bottom: 1%;
    background: var(--light-color);
    transition: all 0.5s ease-in-out;
}

.footer-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.footer-list li {
    list-style: none;
}

.footer-list li a {
    margin-left: 5px;
    margin-right: 5px;
}

footer i {
    color: var(--bg-color);
}

footer i:hover {
    color: var(--highlight);
}

footer p::selection {
    background-color: var(--bg-color);
    color: var(--light-color);
}

footer span::selection {
    background-color: var(--bg-color);
    color: var(--light-color);
}