body {
    font-family: system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    "Liberation Sans",
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji";
    background-color: #f8f8f8;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 1em;
}

.content {
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-width: 1px;
    border-style: solid;
    padding: 1em;
    background-color: #fff;
    color: black;
}

img {
    border-radius: 50%;
    width: 200px;
}

h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 0.5em;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 1em;
}

.experience, .education {
    margin-top: 2em;
}

.experience h3, .education h3 {
    margin-top: 0;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    color: #333;
    padding: 0.5em 1em;
    border-width: 1px;
    border-style: solid;
}

.menu a {
    color: #333;
    text-decoration: none;
}

.menu a:hover {
    color: gray;
}

.menu a.active {
    font-weight: bold;
    color: #000;
}

.headline {
    font-size: 3em;
    text-align: center;
    margin: 1em 0;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    z-index: 1;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-width: 1px;
    border-style: solid;
}

.language-dropdown-content a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 0.5em 1em;
}

.language-dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

.language-dropdown:hover .language-dropdown-content {
    display: block;
}