body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
        }
        header {
            color: ##2174C6;
            padding: 1em 0;
            text-align: center;
        }
        
        #header-effect {
            font-family: monospace;
            font-size: 50px; 
            font-weight: bold; 
            display: inline-block;
            color: ##2174C6;
        }

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: #2174C6; 
    color: #fff; 
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
}

.svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#networkGraph {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .node {
            stroke: #000;
            stroke-width: 1.5px;
        }

        .link {
            stroke: #aaa;
            stroke-width: 1.5px;
        }

nav ul li a:hover {
    background-color: transparent; 
    color: #000; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0)
}

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

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


main {
    padding: 2rem;
}

.main-content {
    flex: 1; 
}

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);
        }

.pdf-wrapper {
    height: calc(100vh - 60px); 
    width: 100%;
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.project-container {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: border-color 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.project-container:hover {
    border-color: #0056b3;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.project-container h3 {
    margin-top: 0;
    color: #333;
    font-weight: bold;
}

.project-container .description {
    margin: 10px 0;
    color: #666;
}

.project-container .github-link {
    display: inline-block;
    margin-bottom: 10px;
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.project-container .github-link:hover {
    text-decoration: underline;
}

.project-container .project-image-link {
    display: block;
    margin-top: 10px;
}

.project-container .project-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}


.media-container {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: border-color 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.media-container:hover {
    border-color: #0056b3;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.media-container h3 {
    margin-top: 0;
    color: #333;
    position: relative;
    padding: 10px;
    font-style: italic;
    background: #f0f8ff;
    border-left: 5px solid #0056b3;
    border-radius: 5px;
}

.source-label {
    font-weight: bold;
    color: #0056b3;
}

.news-agency {
    display: block;
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
}

.media-container a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s, text-decoration 0.3s;
}

.media-container a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.section-bar {
    border-bottom: 2px solid #0056b3; 
    margin-bottom: 20px;
    padding-bottom: 10px;
}




.blog-container {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .blog-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
        .blog-container h3 {
            margin: 0;
            padding: 15px;
            background-color: #007BFF;
            color: white;
            font-size: 1.25em;
            border-bottom: 1px solid #0056b3;
        }
        .blog-container p {
            padding: 15px;
            font-size: 1em;
            color: #333;
        }
        .blog-container a {
            display: block;
            padding: 15px;
            text-align: center;
            background-color: #007BFF;
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-top: 1px solid #0056b3;
        }
        .blog-container a:hover {
            background-color: #0056b3;
        }
        
            #networkGraph {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        .resume-container {
            max-width: 900px;
            margin: auto;
        }
        
        #networkGraph {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .resume-container {
    max-width: 900px;
    margin: auto;
}
        
        main {
            padding: 20px; 
        }

        .media-container {
            border: 2px solid #ddd;
            border-radius: 10px;
            padding: 10px;
            margin-bottom: 40px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .media-container:hover {
            border-color: #0056b3;
            border-radius: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .content {
            display: flex;
            align-items: flex-start; 
            justify-content: space-between; 
        }

        .project-description {
            flex: 1; 
            max-width: 60%; 
            margin-right: 20px; 
        }

        .project-description .description {
            margin: 0;
            color: #555;
        }

        .image-frame {
            display: flex;
            align-items: center; 
            justify-content: center; 
            height: 250px; 
            background-color: white; 
            border-radius: 10px; 
        }

        .project-image {
            align-items: center; 
            height: 100%; 
            width: auto; 
            object-fit: cover; 
            border-radius: 5px; 
        }

        .media-container .buttons {
            margin-top: 20px; 
        }

        .media-container .buttons a {
            text-decoration: none;
            color: #fff; 
            background-color: #0056b3; 
            padding: 10px 20px; 
            border-radius: 5px; 
            margin-right: 10px; 
            transition: background-color 0.3s, transform 0.3s;
            display: inline-flex;
            align-items: center;
            font-size: 14px; 
            font-weight: 600; 
        }

        .media-container .buttons a:hover {
            background-color: #003d7a; 
            transform: translateY(-2px); 
        }

        .buttons i {
            margin-right: 8px; 
            font-size: 16px; 
        }

        @media screen and (max-width: 600px) {
            .image-frame {
                display: none; 
            }

            .project-description {
                max-width: 100%; 
                margin-right: 0; 
            }
        }
          .section-bar {
    position: relative;
    margin-top: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
    font-size: 1.5em;
    font-weight: bold;
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.media-container {
    position: relative; 
}

.tags {
    position: absolute;
    bottom: -10px; 
    right: 10px; 
    display: flex;
    gap: 5px; 
    flex-wrap: wrap; 
    justify-content: right; 
}

.tag {
    background-color: #ff6464; 
    color: white; 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 5px 10px; 
    font-size: 12px; 
    text-align: center; 
    white-space: nowrap; 
    display: inline-block; 
}




.filter-buttons {
    display: flex;
    flex-wrap: wrap; 
    gap: 10px; 
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    justify-content: center; 
}

.filter-buttons button {
    background-color: #ff6464; 
    color: white; 
    border: 1px solid white;
    border-radius: 5px; 
    padding: 10px 20px; 
    font-size: 14px; 
    font-weight: 600; 
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.filter-buttons button:hover {
    background-color: transparent; 
    color: black;
    transform: translateY(-2px); 
}

.filter-buttons button.selected {
    background-color: #a83232; 
    color: white; 
}

