body {
    font-family: 'Montserrat', sans-serif;
    background: #f0f0f0;
    margin: 0;
    padding: 0;
    color: #333;
    text-align: center;
}

header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    padding: 60px 0;
    margin-bottom: 20px;
}

header h1 {
    font-size: 3em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

nav {
    background: rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ddd;
}

main {
    padding: 20px;
}

section {
    margin: 40px 0;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

p {
    width: 80%;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
    line-height: 1.6;
}

.portfolio {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.portfolio img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    display: inline-block;
}

.social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s, filter 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

hr {
    width: 80%;
    margin: 20px auto;
    border: 0;
    height: 1px;
    background: #ccc;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    h2 {
        font-size: 1.5em;
    }

    p {
        width: 90%;
        font-size: 1em;
    }

    .portfolio img {
        width: 120px;
        height: 120px;
    }

    .social-icons img {
        width: 35px;
        height: 35px;
    }
}
