  body {
            margin: 0;
            padding: 0;
            font-family: 'Inter', Arial, sans-serif;
            background-color: #8ba7db; 
            color: #000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            padding: 30px 40px;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 3px;
        }
        .nav-links a {
            margin-left: 30px;
            text-decoration: none;
            color: black;
        }

        .hero-section {
            display: flex;
            flex-direction: column; 
            align-items: center; 
            justify-content: center;
            min-height: 70vh;
        }

        .name-container {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;   
            gap: 15px;            
        }
        .profile-img {
            max-width: 120px;    
            height: auto;
        }

        .name-text {
            text-transform: uppercase;
            letter-spacing: 5px;
            font-size: 16px;
            color: #8b5e34;
            margin: 0;
        }

