html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color:#333;
    font-weight: 500;
}

nav a:hover {
    color: #4CAF50;
}

header {
    text-align: center;
}

h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

section {
    margin-top: 40px;
}

p {
    margin: 0;
}

section ul {
    list-style: none;
    padding: 0;
}

section li {
    background-color: #fafafa;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

section li:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

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

#projects a {
    text-decoration: none;
    color: #333;
    display: block;
}

#projects a:hover {
    color: #4CAF50; 
}

#contact a {
    color: #4CAF50;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .container {
        margin: 20px;
        padding: 15px;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}
