
        @keyframes gradient {
            0% {background: rgb(10, 10, 10);} /* very dark gray */
            20% {background: rgb(20, 20, 20);} /* slightly lighter dark gray */
            40% {background: rgb(30, 30, 30);} /* even slightly lighter dark gray */
            60% {background: rgb(40, 40, 40);} /* even slightly lighter dark gray */
            80% {background: rgb(50, 50, 50);} /* even slightly lighter dark gray */
            100% {background: rgb(10, 10, 10);} /* back to very dark gray */
        }
    
        body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            transition: background 2s ease-in-out;
            animation: gradient 10s ease infinite;
            user-select: none;
            overflow: hidden;
        }
        
        .outer-wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
        }

        .img-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 10px;
            width: 400px;
            height: 400px;
            margin: 0 auto;
            padding: 0;
            transform: rotate(45deg);
        }
        
        .img-container .img-rhombus {
            overflow: hidden;
            display: inline-block;
            border-radius: 10px;
            transition: transform 0.3s ease-in-out; /* Add transition for smooth animation */
        }
        
        .img-container .img-rhombus:hover {
            transform: scale(1.1); /* Scale up when hovered over */
        }
        
        .img-container .img-rhombus .inner-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            transition: all 0.5s linear;
        }
        
        .img-container .img-rhombus .inner-wrapper:before {
            content: "";
            background: rgb(255,255,255);
            background: linear-gradient(90deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 150%);
            transform: rotate(-45deg);
            position: absolute;
            width: 70%;
            height: 200%;
            z-index: 99999;
            left: 5%;
            top: -10%;
        }
        
        .img-container .img-rhombus .inner-wrapper img {
            object-fit: cover;
            width: 141%; /* Adjusted to fit the diagonal of the square grid cell */
            height: 141%; /* Adjusted to fit the diagonal of the square grid cell */
            position: absolute;
            top: -21%; /* Adjusted to vertically center the image */
            left: -21%; /* Adjusted to horizontally center the image */
            transform: rotate(-45deg); /* Rotate the image to match the rhombus grid */
            margin: 0;
            padding: 0;
        }
        
        /* Position the images in the grid to form a rhombus */
        .img-container .img-rhombus:nth-child(1) { grid-row: 2; grid-column: 1; }
        .img-container .img-rhombus:nth-child(2) { grid-row: 1; grid-column: 2; }
        .img-container .img-rhombus:nth-child(3) { grid-row: 1; grid-column: 1; }
        .img-container .img-rhombus:nth-child(4) { grid-row: 3; grid-column: 1; }
        .img-container .img-rhombus:nth-child(5) { grid-row: 1; grid-column: 3; }
        .img-container .img-rhombus:nth-child(6) { grid-row: 2; grid-column: 2; }
        .img-container .img-rhombus:nth-child(7) { grid-row: 2; grid-column: 3; }
        .img-container .img-rhombus:nth-child(8) { grid-row: 3; grid-column: 2; }
        .img-container .img-rhombus:nth-child(9) { grid-row: 3; grid-column: 3; }


        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: -1; /* Decrease this value */
        }
        
        #typing {
            position: relative;
            color: #fff; /* white text */
            font-weight: bold;
        }
        
        #typing::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            color: transparent;
            text-shadow: 0 0 10px #3a72bd, 0 0 20px #3a72bd, 0 0 30px #3a72bd, 0 0 40px #3a72bd, 0 0 70px #3a72bd, 0 0 80px #3a72bd, 0 0 100px #3a72bd, 0 0 150px #3a72bd;
            z-index: -1;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                text-shadow: 0 0 10px #3a72bd, 0 0 20px #3a72bd, 0 0 30px #3a72bd, 0 0 40px #3a72bd, 0 0 70px #3a72bd, 0 0 80px #3a72bd, 0 0 100px #3a72bd, 0 0 150px #3a72bd;
            }
            50% {
                text-shadow: none;
            }
        }

        .audio-player {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 50;
        }

        .audio-control-button {
            background-color: transparent;
            border: none;
            color: #fff;
            font-size: 2em;
            cursor: pointer;
            outline: none;
            text-shadow: 0 0 10px #3a72bd, 0 0 20px #3a72bd, 0 0 30px #3a72bd, 0 0 40px #3a72bd;
        }

        .audio-control-button:hover {
            color: #3a72bd;
        }
        @media (max-width: 1200px) {
            #title {
                top: 10%;
                left: 50%;
            }
        }
        
        @media (max-width: 1000px) {
            #title {
                top: 15%;
                left: 50%;
            }
        }
        
        @media (max-width: 800px) {
            #title {
                top: 20%;
                left: 50%;
            }
        }
        
        @media (max-width: 600px) {
            #title {
                top: 25%;
                left: 50%;
            }
        }

        @media (max-width: 1536px) {
            #title {
                top: 15%;
                left: 50%;
                font-size: 2.5em; /* adjust as needed */
            }
            .profile {
                width: 80px; /* adjust as needed */
                height: 80px; /* adjust as needed */
            }
        
            .profile h1 {
                font-size: 1em; /* adjust as needed */
                margin-top: 30px; /* adjust as needed */
            }
        
            .profile img {
                width: 60px; /* adjust as needed */
                height: 60px; /* adjust as needed */
            }
        
            #header #avatar {
                width: 80px; /* adjust as needed */
                height: 80px; /* adjust as needed */
            }
        
            .profile a {
                font-size: 16px; /* adjust as needed */
                margin-top: 20px; /* adjust as needed */
            }
        
            .profile:nth-child(1) { transform: translate(-50%, -80%) rotate(135deg) translate(200px) rotate(-135deg); }
            .profile:nth-child(2) { transform: translate(-50%, -80%) rotate(45deg) translate(200px) rotate(-45deg); }
            .profile:nth-child(3) { transform: translate(-50%, -80%) rotate(90deg) translate(200px) rotate(-90deg); }
            .profile:nth-child(4) { transform: translate(-50%, -80%) rotate(0deg) translate(200px) rotate(0deg); }
            .profile:nth-child(5) { transform: translate(-50%, -80%) rotate(180deg) translate(200px) rotate(-180deg); }
            .profile:nth-child(6) { transform: translate(-50%, -80%) rotate(225deg) translate(200px) rotate(-225deg); }
            .profile:nth-child(7) { transform: translate(-50%, -80%) rotate(270deg) translate(200px) rotate(-270deg); }
            .profile:nth-child(8) { transform: translate(-50%, -80%) rotate(315deg) translate(200px) rotate(-315deg); }
        }

        #social-icons {
            position: fixed;
            bottom: 10px;
            left: 10px;
            z-index: 50;
        }
        
        #social-icons a {
            z-index: 100; /* Increase this as needed */
            display: inline-block;
            margin-right: 10px;
            color: #fff; /* Change this to the color you want */
            transition: transform 0.3s ease;
        }

        #social-icons a:hover {
            transform: rotate(360deg);
        }

        #social-icons i {
            font-size: 24px; /* Change this to the size you want */
        }

        .page-thunder-to-text {
            position: fixed;
            top: -15%;
            left: 40%;
            transform: translate(-50%, -50%);
            margin-bottom: 50px;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
            background-color: transparent; /* Added this line */
            border: none; /* Added this line */
            box-shadow: none; /* Added this line */
        }
        
        #mainpagetext {
            z-index: 1;
            display: inline-block;
        }