@keyframes fadeOut {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(200px);
    }
}

#cookie-law {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #63b42a;
    position: fixed;
    padding: 0;
    bottom: 0;
    z-index: 200;
    padding: 20px;
    right: 0;
    bottom: 20px;
    animation: fadeOut 2s ease-in-out 4s;
    animation-fill-mode: forwards;
}

.datenschutz__text {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 16px;
    border: 1px solid #fff;
    margin-bottom: 0;
    padding: 20px;
}
