    /* Cookie consent popup styles */
    .cookie-consent-container {
        /* Display the popup by default */
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #333;
        color: white;
        text-align: center;
        padding: 10px 0;
        z-index: 999;
    }

    .cookie-consent-button {
        background-color: #4CAF50;
        color: white;
        border: none;
        padding: 10px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
    }

 

    body {
        font-family: Arial, sans-serif;
        background-color: black;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        overflow: hidden;
    }

    .container {
        text-align: center;
        color: white;
    }

    h1 {
        font-size: 3em;
    }

    p {
        font-size: 1.5em;
    }

    .emoji::after {
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

    .emoji {
        font-size: calc(100px + 4vw);
        min-width: 1.4em;
        margin: 0.3em 0.4em;
        text-align: center;
    }

    .monkey::after {
        content: '🙈';
        --emoji-1: '🙉';
        --emoji-2: '🙊';
        animation-name: threeFrames;
        animation-duration: 2s;
    }

    .button {
        background-color: #04AA6D; /* Green */
        border: none;
        color: white;
        padding: 15px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
      }