.footer {
    position: relative;
    min-height: 100px;
    background-color: var(--very-light-blue);
    border-top: 2px #fff solid;
    font-family: comt, sans-serif;
    font-size: var(--smallerText);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 5px
}

.year {
    display: inline-block;
}

.credit {
    color: var(--dark-blue);
    position: relative;
}

.credit:hover {
    color: var(--mid-blue)
}

.credit::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--mid-blue);
    width: 0;
    height: 2px;
    border-radius: 2px;
    transition: .1s cubic-bezier(.69,.08,.1,.96);
}

.credit:hover::before {
    width: 100%;
    right: auto;
    left: 0
}