/* CSS Reset dan Pengaturan Dasar */
        body, html {
            height: 100%;
            margin: 0;
            font-family: 'Poppins', sans-serif;
            color: #ecf0f1;
            background: linear-gradient(-45deg, #2c3e50, #34495e, #23a6d5, #23d5ab);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
        }

        /* Animasi Latar Belakang */
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Kontainer Utama */
        .container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            height: 100vh;
            padding: 0 20px;
        }

        /* Judul Utama */
        h1 {
            font-size: 4rem;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        /* Subjudul */
        .subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            margin-bottom: 40px;
        }

        /* Blok Kutipan */
        blockquote {
            font-size: 1.5rem;
            font-style: italic;
            font-weight: 400;
            max-width: 700px;
            margin: 20px 0;
            padding: 20px;
            position: relative;
        }

        /* Tanda Petik Dekoratif */
        blockquote::before {
            content: '“';
            font-size: 4rem;
            position: absolute;
            left: -10px;
            top: -10px;
            opacity: 0.2;
		}	
		blockquote::after {
			content: '”';
			font-size: 4rem;
			position: absolute;
			right: -10px;
			bottom: -10px;
			opacity: 0.2;
		}

        /* Sumber Kutipan */
        cite {
            display: block;
            margin-top: 15px;
            font-size: 1rem;
            font-style: normal;
            font-weight: 300;
        }
        
        /* Penyesuaian untuk Layar Kecil (Mobile) */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            .subtitle {
                font-size: 1rem;
            }
            blockquote {
                font-size: 1.2rem;
            }
        }