.footer-container {
    width: 100vw;
    height: var(--footer-height);
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow-y: visible;
    position: relative;
}



.footer {
    width: 100%;
    height: var(--footer-height);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    
    background-color: transparent;
    background-size: 6px 6px;
    background-clip: content-box;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    border-top: 2px solid rgba(59, 59, 59, 0.5);
    box-shadow: inset 0 0 6px 0 rgba(0, 0, 0, 0.486);
    background-color: rgba(22, 22, 22, 0.766);

    position: relative;
}


.footer a {
    text-decoration: none;
}

.footer h3 {
    font-family: Lexend, sans-serif;
    color: var(--text-primary);
    font-weight: 300;
    font-size: 1em;
    text-align: center;
    margin: 0;
    margin-bottom: 8px;
    margin-top: 0;
    text-shadow: 0 0 4px black;
}

.footer h4 {
    font-family: Lexend, sans-serif;
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 0.8em;
    text-align: center;
    margin: 0;
    text-shadow: 0 0 4px black;
    margin-bottom: 0px;
}

.footer-main-container a {
    font-weight: 500;
    color: var(--text-secondary);
}

.footer-login-container {
    height: 40px;
    width: 80px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center !important;
    text-align: center !important;
    border-radius: 10px;
    border: 1px dashed rgb(110, 110, 110);
    transition: background-color .1s;
    top: 19px;
}
#footer-edit-container {
    right: 30px;
}
#footer-login-container {
    left: 30px;
}
.footer-login-container:hover {
    background-color: rgba(255, 255, 255, 0.116);
}
.log-link-text {
    color: rgb(211, 211, 211) !important;
}
.log-link {
    text-decoration: none;
}
.footer-login-link {
    visibility: hidden;
}




@media (min-width: 2400px) {
    .footer h3 {
        font-weight: 300;
        font-size: 1.3em;
        margin-bottom: 7px;
    }

    .footer h4 {
        font-weight: 300;
        font-size: 1.1em;
        margin-bottom: 3px;
    }

    .footer-login-container {
        width: 80px;
        height: 50px;
        border-radius: 12px;
        top: 24px;
        font-size: 18px;
        padding: 0 4px;
    }

    #footer-edit-container {
        right: 30px;
    }
    #footer-login-container {
        left: 30px;
    }

}

@media (max-width: 850px) {
    .footer h3 {
        font-weight: 300;
        font-size: 0.6em;
        margin-bottom: 4px;
    }

    .footer h4 {
        font-weight: 300;
        font-size: 0.5em;
    }

    .footer-login-container {
        width: 32px;
        height: 34px;
        border-radius: 8px;
        top: 7px;
        font-size: 18px;
        padding: 0 4px;
    }

    #footer-edit-container {
        right: 12px;
    }
    #footer-login-container {
        left: 12px;
    }

}