     /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Body Background */
        body {
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, purple, white);
            color: #333;
            text-align: center;
        }

        /* Header */
        header {
            background: purple;
            color: white;
            padding: 30px 10px;
        }

        header p {
            font-size: 18px;
            margin-top: 10px;
        }

        /* Sections */
        section {
            padding: 30px 20px;
        }

        /* Card Style */
        .card {
            background: white;
            margin: 20px auto;
            width: 80%;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            padding: 20px;
        }

        /* Headings */
        h2 {
            color: purple;
            margin-bottom: 10px;
        }

        /* Paragraph */
        p {
            line-height: 1.6;
        }

        /* Gallery */
        .gallery {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .gallery img {
            width: 250px;
            border-radius: 15px;
            transition: 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .gallery img:hover {
            transform: scale(1.05);
        }

        /* Audio */
        audio {
            margin: 15px 0;
        }

        /* Footer */
        footer {
            background: purple;
            color: white;
            padding: 15px;
            margin-top: 20px;
            
        }button {
    background: black;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background: white;
    color: black;
    border: 2px solid black;
}
    </style>
