        /* MAIN CONTENT */

        main {
            width: 50%;
            margin: 40px auto;
        }

        section {
            background-color: blueviolet;
            font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            padding: 40px;
            margin-bottom: 30px;
            border-radius: 15px;
            box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
            text-align: left;
        }

        section > img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 20px;
            float: right;
        }

        section h2 {
            margin-bottom: 15px;
            color: #222;
        }

        section p {
            line-height: 1.8;
        }

        /* CARDS */

        .card-container {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .card {
            flex: 1;
            min-width: 250px;
            background-color: #fafafa;
            padding: 20px;
            border-radius: 12px;
            transition: 0.3s;
            border: 1px solid #ddd;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
        }

        .card h3 {
            margin-bottom: 10px;
            color: #444;
        }

        /* BUTTON */

        .btn {
            display: inline-block;
            margin-top: 20px;
            background-color: #111;
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            transition: 0.3s;
        }

        .btn:hover {
            background-color: #c9a0ff;
            color: black;
        }

        #section2 {
            background-color: #c9a0ff;
            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        }

        #section3 {
            background-color: #ddd;
            font-family: Arial, Helvetica, sans-serif;
        }

        #section4 {
            background-color: indigo;
            font-family: zapfino, cursive;
            color: white;
        }

        #section5 {
            background-color: sienna;
            font-family: komika axis, cursive;
            color: blanchedalmond;
        }

        #section6 {
            background-color: tomato;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }
        /* FOOTER */

        footer {
            background-color: #111;
            color: white;
            text-align: center;
            padding: 25px;
            margin-top: 40px;
        }

        footer p {
            margin: 5px;
        }

        /* RESPONSIVE */

        @media (max-width: 768px) {

            header h1 {
                font-size: 2rem;
            }

            .hero-text h2 {
                font-size: 2rem;
            }

            .card-container {
                flex-direction: column;
            }

        }