footer {
    position: static;
    bottom: 0px;
    width: 100%;
    height: 0px;
    z-index: 100;
    font-family: Calibri, 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
}
#footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 0px 70px 0px;
    height: fit-content;
    background-color: rgb(27, 27, 27);
}
.footer__social {
    display: inline-block;
    margin: 5px 12px;
    cursor: pointer;
}
.footer__row {
    display: block;
    width: max-content;
    padding: 10px 0px;
}
footer a {
    color: rgb(165, 165, 165);
    margin-left: 6px;
    margin-right: 6px;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
}
footer a:hover {
    color: white;
}
.footer__copyright {
    font-size: 15px;
    margin: 5px;
    text-align: center;
    color: rgb(165, 165, 165);
}

#CookieDisclaimer {
    display: block;
    position: fixed;
    height: fit-content;
    width: 100%;
    margin: 0px;
    bottom: 0px; 
    left: 0px;
    background-color: rgb(12, 12, 12);
    z-index: 100;
    transform: translateY(100px);
    animation: cookieslide 1s linear 500ms 1 normal forwards;
}

#CookieDisclaimer div {
    margin: auto;
    display: block;
    width: fit-content;
}

#CookieDisclaimer span {
    display: inline-block;
    margin: 15px 5px;
    font-size: 22px;
    text-align: center;
}

#CookieDisclaimer button {
    display: inline-block;
    vertical-align: baseline;
    font-size: 22px;
    padding: 3px 6px;
    margin-left: 20px;
    border: none;
    background-color: rgb(67, 67, 67);
    color: rgb(211, 211, 211);
}

#CookieDisclaimer button:hover {
    background-color: rgb(255, 61, 61);
    color: white;
}

@keyframes cookieslide {
    from { transform: translateY(100px); }
    to { transform: translateY(0px); }
}

@media screen and (max-width: 1400px) {
    #CookieDisclaimer button {
        display: block;
        width: auto;
        margin: 0px auto 20px auto;
    }
}