@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    padding: 20px 0;
    margin: 0;
}

.header {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    margin: 0 auto;
}

.header h1 {
    font-size: 28px;
    margin: 0;
    text-align: center;
}

.header ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 500px;
    gap: 0 20px;
    justify-content: center;
    margin: 0 auto;
}

.header ul li {
    font-size: 16px;
}

.header ul li:first-child {
    list-style: none;
}

section {
    margin: 20px auto 0;
    max-width: 800px;
    width: 100%;
}
section h2{
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
}
section p{
    margin: 12px 0 0;
    font-size: 16px;
}
section p.position,
section p.date,
section p.company-name{
    font-weight: bold;
}
section .position-date{
    display: flex;
    justify-content: space-between;
}
section ul li{
    margin-top: 8px;
}
section ul li:first-child{
    margin-top: 0;
}
section .course-item{
    margin-top: 12px;
}