:root[data-theme="light"]{
    --border-color: #e2e8f0;
    --hover-div: #eef2f7;
    --gradient: linear-gradient(to right, #6366f1, #3b82f6, #06b6d4);
}

:root[data-theme="dark"]{
    --border-color: #334155;
    --hover-div: #2b3545;
    --gradient: linear-gradient(to right, #818cf8, #38bdf8, #22c55e);
}

footer{
    width: 100vw;
    height: auto;
    padding: 25px;
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 71px;
    background: var(--hover-div);
    box-sizing: content-box;
    z-index: 4;
} 

footer p{
    font-size: small;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

footer p{
    text-decoration: underline var(--border-color);
}

footer h3{
    font-size: large;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    user-select: none;
}

@media only screen and (min-width: 375px){
    footer h3{
        font-size: larger;
    }
    footer p{
        font-size: large;
    }
}

@media only screen and (min-width: 768px){
    footer{
        margin-top: 94px;
    }
}