.cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #1e1e1e;
            color: #fff;
            padding: 20px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
            transform: translateY(100%);
            opacity: 0;
        }
        .cookie-banner.show {
            transform: translateY(0);
            opacity: 1;
        }
        .cookie-banner p {
            margin: 0;
            margin-bottom: 15px;
            font-size: 16px;
            text-align: center;
        }
        .cookie-banner button {
            background-color: #007bff;
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .cookie-banner button:hover {
            background-color: #0056b3;
        }
* {
    background-size: cover;
    background-position: center center;
}
