:root {
    --body-text: black;
}

body {
    font-family: helvetica;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

#name {
    font-size: 3.5em;
    color: var(--body-text);
    margin-bottom: 0;
}

#my-title {
    margin-top: 0;
}

#my-title span {
    color: gray;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--body-text);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact {
    display: flex;
    flex-direction: column;
    line-height: 0px;
}

.contact-info {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
}

.link-desc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.item {
    line-height: 1rem;
}

.item-title {
    margin-bottom: 2px;
}

.item-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.item-info p {
    margin: 0;
}

.company {
}

.dates {
    font-style: italic;
}

.item-tasks {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.2rem;
}

.what-i-did {
    font-weight: 100;
}

.edu-desc {
    margin-top: 0;
    list-style: circle;
    font-style: italic;
}

#skills h1 {
    margin-bottom: 0;
}

.skills-list {
    display: flex;
    margin-top: 0;
}

#student-experience {
    display: none;
}

#projects {
    display: none;
}

#promotion {
    border-left: 2px solid black;
}

@media screen and (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
}