@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f0e6f7 0%, #e8d5f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    padding: 20px;
}
.container {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    max-width: 600px;
    width: 100%;
}
.avatar-container {
    background: #d47fb8;
    border-radius: 20px;
    padding: 20px; /* space around the image */
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pixel-wizard {
    width: 150px; /* adjust to desired size */
    height: 150px; /* adjust to desired size */
    object-fit: cover; /* ensures the image stays inside the box */
    image-rendering: pixelated; /* if you want a pixel art effect */
    display: block;
}
.content {
    text-align: center; /* Center all content within this div */
    width: 100%;
}
.nav-link {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
    padding: 10px 20px;
    border: 1px solid #4299e1;
    border-radius: 6px;
    display: inline-block;
}
.nav-link:hover {
    color: #2b6cb0;
    border-color: #2b6cb0;
    background: rgba(66, 153, 225, 0.1);
}
.navigation {
    text-align: center; /* Center the navigation button */
    margin-top: 20px; /* Add some spacing above the button */
}
.name {
    font-size: 28px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-align: center; /* Center the title */
}
.description {
    font-size: 14px;
    line-height: 1.7;
    color: #718096;
    margin-bottom: 35px;
    text-align: left; /* Keep description text left-aligned */
}
.projects-list {
    list-style: none;
    text-align: left;
}
.projects-list li {
    font-size: 14px;
    color: #4299e1;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.projects-list li::before {
    content: '•';
    color: #4299e1;
    position: absolute;
    left: 0;
    font-weight: bold;
}
.projects-list li:hover {
    color: #2b6cb0;
    transform: translateX(4px);
}
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .avatar-container {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .pixel-wizard {
        width: 100px;
        height: 100px;
    }
    
    .pixel-wizard::after {
        font-size: 80px;
    }
    
    .name {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
}
