body {
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    background: #1e1e1e;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #333; 
    object-fit: cover;
    margin-right: 30px;
    border: 4px solid #1e1e1e;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.header-info h1 {
    font-size: 2.5rem;
    color: #ffffff;
}

.header-info p {
    font-size: 1.1rem;
    color: #b0b0b0;
}

.contact-links a {
    color: #64b5f6;
    text-decoration: none;
    margin-right: 15px;
    font-weight: bold;
}

.contact-links a:hover {
    text-decoration: underline;
}

section {
    margin-bottom: 30px;
}

h2 {
    color: #ffffff;
    border-left: 5px solid #64b5f6;
    padding-left: 10px;
    margin-bottom: 15px;
}

.skills-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skills-list li {
    background: #333;
    color: #90caf9;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #444;
}

.project-item {
    margin-bottom: 20px;
    background-color: #252525;
    padding: 15px;
    border-radius: 5px;
}

.project-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.project-item a {
    color: #64b5f6;
    text-decoration: none;
}

.project-item a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.8rem;
    color: #777;
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    .profile-photo {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
