/* ----------------------------------------------------------------------------- *
 *                                 Footer Styling                                *
 * ----------------------------------------------------------------------------- */

footer {
    display: flex;
    gap: 20px;
    box-shadow: 0px -10px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
    background-color: var(--layout-color);
    padding: 40px;
}

footer p,
footer a {
    font-size: 1.8em;
    color: gray;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

footer a:visited {
    color: gray;
}

footer a:hover {
    color: lightgray;
}