body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            padding: 20px;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center; /* Center align items horizontally */
            min-height: 100vh;
        }

        h1 {
            text-align: center;
            margin-bottom: 20px;
        }

        textarea {
            width: 80%;
            max-width: 600px; /* Set a maximum width */
            height: 200px;
            margin-bottom: 10px;
            padding: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            resize: none;
            font-family: 'Courier New', monospace;
        }

        .logo {
            font-size: 24px;
            width: 300px; /* Set width to 300px */
            height: 100px; /* Set height to 100px */
            color: #fff;
            font-weight: bold;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .title {
            color: #00ba76;
            text-align: center;
            font-weight: bold;
            font-size: 15px;
            font-weight: 600;
        }

        .button-container {
            display: flex; /* Use flexbox for the button container */
            justify-content: center; /* Center align buttons */
            margin: 10px 0; /* Margin for spacing */
        }

        button {
            padding: 10px 20px;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin: 5px; /* Adjusted margin for buttons */
            box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
            transition: background-color 0.2s, transform 0.2s;
        }

        button:hover {
            background-color: #0056b3;
            transform: translateY(-2px);
        }

        button:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        #output {
            margin-top: 20px;
            padding: 10px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            white-space: pre-wrap;
            word-wrap: break-word;
            max-width: 600px; /* Set a maximum width for output */
            width: 100%; /* Full width */
        }

        footer {
            margin-top: auto;
            /*position: fixed; */
            /* bottom: 0; */
            padding: 20px;
            text-align: center;
            background-color: #007BFF;
            color: white;
            border-top: 1px solid #0056b3;
            width: 100%; /* Make footer full width */
        }

        .footer-button {
            background-color: #28a745;
            padding: 10px 20px; /* Adjusted padding */
            color: white;
            text-decoration: none;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
        }

        .footer-button:hover {
            background-color: #218838;
        }