footer {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    bottom: 10px;
    left: 10px;
    background-color: black;
    padding: 10px;
    border-radius: 0px 20px 0px 0px;
    width: auto;
    height: 40px;
    padding: 15px;
    text-align: center;
}

footer p {
    font-size: 14px !important;
}


#cookies-banner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: absolute;
    gap: 10px;
    bottom: 20px;
    right: 25px;
    width: 400px;
    animation: cookies 1.5s cubic-bezier(0.25, 0.5, 0.5, 1) 2.5s forwards;
    transform: translateX(80px);
    opacity: 0;
    filter: blur(10px);
    z-index: 100;

}

@keyframes cookies {
    to {
        transform: none;
        opacity: 1;
        filter: none;

    }
}

#cookies-banner p {
    text-align: center;
}

#cookies-banner #reject-cookies {
    text-decoration: underline;
    color: #E0752D;
    background: none;
    border: none;
    cursor: pointer;
    transition: all .2s cubic-bezier(0.9, 0, 0.3, 1);
}

#cookies-banner #reject-cookies:hover {
    color: white;
    transition: all .2s cubic-bezier(0.9, 0, 0.3, 1);

}



@media (max-width:850px) {
    footer {
        bottom: 5px;
        left: 5px;
        padding: 10px 10px 10px 5px;
        height: 25px;
    }

    footer p {
        font-size: 7px !important;
    }

    #cookies-banner {
        gap: 5px;
        bottom: 100px;
        left: 15px;
        width: 91.7%;
        transform: scale(0.7);

    }


}