 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        
        html, body {
            height: 100%;
            margin: 0;
            font-family: Arial, sans-serif;
        }

        body {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #2174C6; 
            color: #fff;
            text-align: center;
        }

        .content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            flex-grow: 1; 
        }

        
.profile-image-new {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    transition: transform 0.3s ease, background-color 0.3s;
    transform-origin: center;
}

.profile-image-new:hover {
    transform: scale(1.3);
}

.profile-image-new::after {
    content: "Mathematician and Data Activist with 4+ years of experience in web scraping, predictive modeling, and data storytelling. Using data to create accountability.";
    position: absolute;
    bottom: -50px; /* Position it below the image */
    left: 50%;
    transform: translateX(-50%);
    width: 200px; /* Width of the box */
    padding: 10px; /* Padding for the text */
    background-color: rgba(0, 0, 0, 0.7); /* Background color */
    color: #fff; /* Text color */
    border-radius: 10px; /* Optional: rounded corners */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
    font-size: 14px; /* Font size for the text */
    line-height: 1.4;
    text-align: center; /* Center the text */
    white-space: normal; /* Allow text to wrap */
}

/* Show the box with text when hovering */
.profile-image-new:hover::after {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s 0s;
}

        

        #header-effect {
            font-size: 4em;
            font-weight: bold;
            margin-bottom: 50px;
        }

        nav {
            margin: 0;
        }

        nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

        nav ul li {
            display: inline;
        }

        nav ul li a {
            display: inline-block;
            background-color: #fff;
            color: #2174C6;
            text-decoration: none;
            padding: 15px 30px;
            font-size: 1.2em;
            font-weight: bold;
            border-radius: 5px;
            transition: background-color 0.3s, color 0.3s;
        }
        

        nav ul li a:hover {
            background-color: transparent;
            color: #fff;
        }

        footer {
            background: #333;
            color: #fff;
            text-align: center;
            padding: 1rem 0;
            width: 100%;
        }

        footer a {
            color: #fff;
            text-decoration: none;
            margin: 0 15px;
            font-size: 2em;
            display: inline-block;
            transition: transform 0.3s;
        }

        footer a:hover {
            transform: scale(1.3);
        }

        .fa {
            margin: 0 10px;
        }
        header {
            background: #2174C6;
            color: #fff;
            padding: 1em 0;
            text-align: center;
        }
        
        #header-effect {
            font-family: monospace;
            font-size: 50px; 
            font-weight: bold; 
            display: inline-block;
            color: #fff;
        }
        
               #networkGraph {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
