footer{
    
    z-index: 10;
    top: 0px;
    position: fixed;
    font: var(--code);

    height: 2em !important;
    width: 2em !important;
    background-color: #7d7d7dc0;
    margin: 2em;

    background: rgba(29, 29, 29, 0.383);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

footer a:hover{
    text-decoration: none;
}

footer{
animation: fadeInAnimation ease 3s
/* animation-iteration-count: 1;
animation-fill-mode: forwards; */
    }

footer{
    animation: fadein 5s;
    -moz-animation: fadein 5s; /* Firefox */
    -webkit-animation: fadein 5s; /* Safari and Chrome */
    -o-animation: fadein 5s; /* Opera */
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

footer:hover{
    width: var(--base);
    height: var(--base);
    height: calc(var(--base) * 5.5) !important;
    width: fit-content !important;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

footer ul{
    display: none !important;
}

footer:hover ul{
    display: flex !important;
    padding: var(--base) var(--base);
}

footer li{
    flex-direction: row;
    list-style-type: none;
    word-break: keep-all;
    
}

footer a{
    /* color: white; */
    text-decoration: none;
        /* -webkit-text-stroke-width: 10px; */
    /* -webkit-text-stroke-color: var(--blue); */
    /* paint-order: stroke fill; */
}

.inlinks{
    color: white !important;

    display: flex;
    padding: 0px;
    margin: 0px;
    gap: var(--base);
}