 body {
            font-family: 'Trebuchet MS', Arial, sans-serif;
            background-color: #cce6ff;
            color: #000;
            margin: 0;
            padding: 0;
        }

        h1 {
            text-align: center;
            font-size: 50px;
            margin-top: 50px;
        }

        nav {
            background-color: #333;
            padding: 10px;
            text-align: center;
        }

        nav a {
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            font-size: 16px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        nav a:hover {
            background-color: #ddd;
            color: black;
            transform: scale(1.2);
        }

        /* Slideshow Container */
        .slideshow-container {
            position: relative;
            width: 80%;
            max-width: 600px;
            margin: 30px auto;
            overflow: hidden;
        }

        /* Hide all images by default */
        .slides {
            display: none;
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        /* Slideshow Container */
        .slideshow-container {
            position: relative;
            width: 80%;          /* Adjust as needed */
            max-width: 600px;    /* Maximum width for the slideshow */
            height: 400px;       /* Fixed height for all images */
            margin: 30px auto;
            overflow: hidden;    /* Keep images inside the container */
        }

        /* Hide all images by default */
        .slides {
            display: none;
            width: 100%;         /* Make the image fill the container width */
            height: auto;        /* Maintain aspect ratio */
            max-height: 100%;    /* Limit height to the container */
            object-fit: contain; /* Ensure the image fits without distortion */
            border-radius: 10px; /* Optional: For rounded corners */
        }

        /* Styling for the About Me text */
        .about-me {
            text-align: center;
            font-size: 18px;
            margin: 20px auto;
            padding: 10px;
            max-width: 800px;
        }