.footer{
    text-align:center;
    padding:60px 20px;
    background:linear-gradient(to bottom, #ffffff, #fafafa);
    border-top:1px solid #e5e7eb;
    font-family:"Prompt", sans-serif;
}

.footer p{
    color:#6b7280;
    font-size:.95rem;
    line-height:1.8;
    letter-spacing:.2px;
    margin:0;
}

.footer a{
    color:#111;
    text-decoration:none;
    font-weight:400;
    position:relative;
    display:inline-block;
    margin-top:6px;
    transition:all .3s ease;
}

/* underline animation */
.footer a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0%;
    height:1px;
    background:#111;
    transition:width .3s ease;
}

.footer a:hover::after{
    width:100%;
}