
        body {
            font-family: 'Arial', sans-serif;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
            background-size: cover;
            background-attachment: fixed;

        }
        h1 {
            color: #333;
        }
        h2 {
            color: #333;
        }
        .container {
            background-color: white;
            margin-top: 30px;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .input-group {
            margin: 20px 0;
        }
        input[type="url"] {
            width: 70%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        button {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-right: 15px;
            margin-left: 15px;
            margin-bottom: 15px;
            margin-top: 15px;
        }
        button:hover {
            background-color: #45a049;
        }
        #status {
            margin-top: 20px;
            padding: 10px;
            border-radius: 4px;
        }
        .progress-container {
            width: 100%;
            background-color: #f1f1f1;
            border-radius: 4px;
            margin-top: 20px;
            display: none;
        }
        #progressBar {
            width: 0%;
            height: 30px;
            background-color: #4CAF50;
            border-radius: 4px;
            text-align: center;
            line-height: 30px;
            color: white;
        }
        .instructions {
            text-align: left;
            margin-top: 30px;
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 4px;
        }
        .home {
            position: absolute;
            top: 0;
            left: 0;
        }