body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #222;
    background-color: #fff;
}

header {
    background-color: white;
    padding: 1rem;
    padding-right: 1.5rem;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
}

nav {
    display: flex;
    gap: 1rem;
    justify-content: right;
}

nav.logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 0rem;
}

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

nav span {
    color: #333;
}

#logo-my-name {
    font-size: 1.5rem;
}

section {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}

#about {
    display: block;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

#about .left {
    flex: 0 0 40%;
    display: flex;
    align-items: flex-start;
}

#about .left img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1.8rem;
}

#about .right {
    flex: 1;
}

section about {
    display: flex;
    align-items: center;
    gap: 2rem;
}

#tabs-section {
    padding-top: 0rem;
}

h2 {
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

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

.job,
.project {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.project-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.job-icon img {
    width: 150px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
}

.project-icon img {
    width: 150px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
}

.job-content,
.project-content {
    flex: 1;
}

.job h3,
.project h3 {
    margin: 0.1rem 0;
}

.job p {
    margin: 0.2rem 0;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skills span {
    background: #eee;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

.contact-links {
    display: flex;
    gap: 1rem;
    margin: 0;
    align-items: center;
}

.contact-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-links a:hover {
    background-color: #555;
}

.div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-top: 2rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-button:hover {
    color: #333;
}

.tab-button.active {
    color: #333;
    border-bottom-color: #333;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

