:root {
    --accent-color: #000000;
}
body {
    font-family: "Arial", sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
    display: flex;
    justify-content: center;
}
.container {
    width: 1000px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 20px;
}
.header {
    grid-column: span 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 4px solid var(--accent-color);
}

.header-text {
    flex: 1;
    padding-left: 20px;
}
h1 {
    margin: 0;
    color: #000000;
    font-size: 28px;
}
.section-title {
    grid-column: span 3;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.section-title::before,
.section-title::after {
    content: "";
    flex-grow: 1;
    height: 2px;
    background-color: var(--accent-color);
}
.left, .right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.middle {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
    text-align: center;
}
.card:hover {
    background: #f0f0f0;
}
.position {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}
.position-title {
    font-size: 20px;
    font-weight: bold;
}
.position-subtitle {
    font-size: 16px;
    color: #555;
}
.position-date {
    grid-column: 3;
    align-self: start;
    text-align: right;
    font-size: 16px;
    color: #555;
}
.position-separator {
    grid-column: span 3;
    height: 2px;
    background-color: var(--accent-color);
    margin-top: 10px;
}
.text-span {
    grid-column: span 2;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}
.skills {
    grid-column: span 2;
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding-top: 10px;
    border-top: 2px solid var(--accent-color);
}
.skills-title {
    font-weight: bold;
    font-size: 18px;
    flex-basis: 20%;
}
.skills-content {
    flex-grow: 1;
    font-size: 16px;
    color: #333;
}
.skills-items {
    justify-content: space-between;
    display: flex;
}

.skill {
    margin-right:12px;
}

.skill::before {
    content: "⦁";
    margin-right: 8px;
}

a {
    text-decoration: none;
    color: #2b384b;
    font-weight: bold;
}
.languages {
    flex-grow: 1;
}