.cookie-banner {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 600px;
            background-color: #222;
            color: #fff;
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
            box-sizing: border-box;
            text-align: center;
            border-radius: 10px 10px 0 0;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .cookie-banner.show {
            opacity: 1;
        }
        .cookie-banner p {
            margin: 0;
            margin-bottom: 10px;
            font-size: 14px;
        }
        .cookie-banner button {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .cookie-banner button:hover {
            background-color: #218838;
        }
* {
    background-size: cover;
    background-position: center center;
}
