:root {
    --primary-color: #6b9080;
    --background-color: #f0f7f4;
    --text-color: #2d3436;
    --accent-color: #a4c3b2;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    text-decoration: underline;
}
h1 {
    font-size: 2em;
}
#content {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#description {
    flex: 1;
    padding: 20px 40px;
}

#photo {
    flex-shrink: 0;
    margin: 20px;
}

#photoIMG {
    clip-path: circle();
    border: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}

#photoIMG:hover {
    transform: scale(1.05);
}
h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin: 1rem 0;
}

.intro {
    font-size: 1.2em;
    color: var(--primary-color);
    font-weight: 400;
}

.skills {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.skills li {
    margin-bottom: 0.5rem;
}

ul:not(.skills) {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

ul:not(.skills) li {
    margin: 0;
}
