       body {
            font-family: Arial, sans-serif;
            background-color: #f2f2f2;
            margin-top: 100px;
            padding: 0;
        }

        h1 {
            margin-bottom: 20px;
            display: inline-block;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        iframe {
            border: 1px solid white;
            width: 100%;
        }
        a {
            text-decoration: none;
            color: #000000;
        }
        a:hover {
            color: #000;
        }
        @media only screen and (min-width: 500px) {
            video {
                width: 100%; /* Stretch the video to fill the container */
            }
        }
        
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

#cookie-popup p {
    margin-right: 20px;
}

#cookie-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

#cookie-btn:hover {
    background-color: #0056b3;
}

        .fb-comments {
          z-index: 0;
        }
            .content {
            background-color: white;
            cursor: pointer;
            padding: 20px;
            margin: 20px auto;
            border-radius: 30px;
            max-width: 600px;
        }