:root {
    --font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
    --font-size: 16px;
    --primary-color: white;
    --secondary-color: #22577A;
    --tertiary-color: #1C1018;
    --primary-text-color: #000000;
    --secondary-text-color: #ffffff;
    --tertiary-text-color: #22577A;
    --avatar-border-width: 25px;
    --avatar-padding: 40px;
    --avatar-border-color: white;
    --margin-small: 8px;
    --margin-large: 24px;
}

body {
    color: var(--primary-text-color);
    font-family: var(--font-family);
    font-size: var(--font-size);
    margin: 0;
    padding: 0;
}

.title-section {
    background-color: var(--secondary-color);
    color: var(--secondary-text-color);
}

.personal-info-container ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.personal-links-section a, .about-section a {
    color: var(--secondary-text-color);
}

.personal-link {
    display: inline-flex;
    align-items: center;
}



.experience-section h3 {
    margin-bottom: 0;
}

.experience-title, 
.experience-date-range, 
.experience-location, 
.experience-responsibilities,
.experience-technologies {
    display: block;
}

.experience-company {
    color: var(--tertiary-text-color);
    white-space: nowrap;
}

.experience-date-range, 
.experience-location {
    font-style: italic;
}

.experience-technologies {
    margin-top: 20px;
}

.experience-technologies ul {
    display: inline;
    list-style: none;
    padding-left:0;
}

.experience-technologies li {
    display: inline;
}

.experience-technologies li:after {
    content: ", ";
}

.experience-technologies li:last-child::after {
    content: "";
}

.skills .svg {
    height: 1rem;
}

.skills a {
    color: var(--primary-text-color);
}

.skills ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-left: 1.2rem;
}

.clickable {
    position: relative;
    cursor: pointer;
    width: fit-content;
}

.link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
