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

        body {
            font-family: 'Times New Roman', Times, serif;
            background: #111;
            color: white;
            line-height: 1.6;
        }

        nav {
            position: fixed;
            width: 100%;
            background: rgba(0,0,0,0.8);
            padding: 1rem;
            backdrop-filter: blur(10px);
        }

        .profilePicture {
            width: 200px;
            height: 200px;
            border-radius: 0%;
            object-fit: cover;
        }

        nav ul {
            display: flex;
            justify-content: center;
            gap: 2rem;
            list-style: none;
        }

        nav a {
            color: white;
            text-decoration: none;
        }

        .centralPodium {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 1rem;
        }

        h1 {
            font-size: 4rem;
        }

        .subtitle {
            color: #aaa;
        }

        .projects {
            padding: 5rem 10%;
        }

        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .project-card-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        
        .cover {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            background: rgba(34, 34, 255, 0.9);
            transition: opacity 0.5s;
        }

        .card {
            position: relative;
            /* width: 250px; */
            height: 250px;

            background: #222;
            padding: 2rem;
            border-radius: 15px;
            transition: transform 0.3s, opacity 0.5s;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-10px);
        }

        .card:hover .cover {
            opacity:0;
        }

        footer {
            text-align: center;
            padding: 3rem;
            color: #888;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s;
        }

        .fade-in.show {
            opacity: 1;
            transform: translateY(0);
        }
