<!DOCTYPE html>
<html lang="it">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Angioletto.net</title>
    <style>
        /* Global styles */
        body {
            font-family: 'Arial', sans-serif;
            background: #f7f7f7;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            color: #333;
        }

        /* Container for centering the content */
        .quote-container {
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 40px;
            max-width: 750px;
            width: 90%;
            text-align: center;
        }

        /* Styling for the quote text */
        blockquote {
            font-size: 1.6em;
            color: #4a4a4a;
            border-left: 6px solid #ff5733; /* Warm color accent */
            padding-left: 20px;
            margin: 20px 0;
            line-height: 1.8;
            font-style: italic;
        }

        blockquote p {
            margin: 10px 0;
        }

        /* Styling for the author names */
        blockquote p strong {
            font-weight: bold;
            color: #ff5733; /* Color to highlight the speaker */
        }

        /* Footer styling */
        footer {
            font-size: 1em;
            color: #aaa;
            margin-top: 30px;
        }

        /* Mobile-specific styling */
        @media (max-width: 600px) {
            body {
                padding: 10px;
            }

            .quote-container {
                padding: 20px;
            }

            blockquote {
                font-size: 1.4em; /* Smaller font size on mobile */
                padding-left: 15px;
            }

            footer {
                font-size: 0.9em;
            }
        }
    </style>
</head>
<body>

    <div class="quote-container">
        <blockquote>
            <p><strong>Frodo:</strong> Vorrei che l'Anello non fosse mai venuto da me. Vorrei che non fosse accaduto nulla.</p>
            <p><strong>Gandalf:</strong> Vale per tutti quelli che vivono in tempi come questi, ma non spetta a loro decidere; possiamo soltanto decidere cosa fare con il tempo che ci viene concesso.</p>
        </blockquote>

        <footer>
            <p>&copy; 2025 Angioletto.net. </p>
        </footer>
    </div>

</body>
</html>
