body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e0e0e0;
}

header nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

header a {
    text-decoration: none;
    color: inherit;
}


#home {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: calc(100vh - 52px);
    background-color: #f5f5f5;
    padding: 0;
    margin: 0;
}

#home-left {
    padding: 2rem;
}

#home-left h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3rem;
    margin: 0;
    line-height: 1.2;
}

#home-left p {
    font-family: Arial, Helvetica, sans-serif;
}

#home-right {
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-right: 4rem;
    min-width: 350px;
}

#home-right h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.25rem;
    color: #666;
    text-align: left;
}

#home-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#home-right li {
    margin-bottom: 0;
}

#home-right a {
    display: block;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    font-size: 1.2rem;
    text-align: left;
    width: 100%;
    position: relative;
}

/* #home-right a::after {
    content: ">";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
} */

#home-right a:hover {
    background-color: #f5f5f5;
}

#experience {
    padding: 2rem;
    background-color: white;

}

#experience h2 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
    text-align: left;
}