@import url(variables.css);

#footer {
    text-align: center;
    padding: 1rem;
    z-index: 2;
    margin-bottom: 50px
}

#footer a {
    text-decoration: none;
    color: white;
    font-size: large;
    display: inline-block;
    position: relative;
    transition: color 0.25s ease-in-out;
}

#footer a:hover {
    color: var(--xcits-green);
}

#footer a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--xcits-green);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

#footer a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.footer-copyright {
    font-size: small;
}