/* Set width to A4 page width when printing */
@media print {
    .container {
        padding: 0;
    }
    .left-container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

html, body {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    letter-spacing: 1px;
}

body {
    background-color: white;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: normal;
    text-transform: uppercase;
}

.container {
    margin: 0 auto;
    width: 980px;
    min-height: 100vh;
    display: flex;
    position: relative;
}

.left-container {
    flex: 1;
    background: #323b4c;
    padding-top: 2rem;
    padding-left: 1rem;
    color: white;
    padding-bottom: 5rem;
}

.left-container::after {
    position: absolute;
    pointer-events: none;
    display: block;
    content: '';
    background: #323b4c;
    right: 100%;
    left: -1000%;
    top: 0;
    bottom: 0;
}

.right-container {
    color: #323b4c;
    flex: 2;
    padding: 1rem;
    border-left: 2px solid #323b4c;
    margin-left: 1.5rem;
    background-color: white;
}

.article-heading {
    border-bottom: 1px solid white;
    padding-bottom: 0.5rem;
    font-weight: normal;
}

.contact h4 {
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.contact p {
    margin: 0;
    font-weight: bold;
}

.contact a {
    font-weight: bold;
}
.education > ul > li > h5 {
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.link {
    text-decoration: none;
    color: white;
}

.link:hover {
    text-decoration: underline;
}

.list {
    list-style: none;
    padding: 0;
}

.list h4 {
    font-weight: bolder;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.list h5 {
    font-weight: bolder;
    text-transform: uppercase;
    margin: 0;
}

.list p {
    margin: 0;
}

.overview h2, h1 {
    margin-bottom: 0.2rem;
}

.overview {
    border-bottom: 2px solid #323b4c;
}

.overview p {
    text-align: justify;
    /*line-height: 1.5rem;*/
    text-indent: 1.5rem;
}

.experience-list > ul {
    list-style: circle;
    padding-left: 0;
    margin-left: 1rem;
}

.experience-list > ul ul {
    list-style: square;
    margin-left: 1rem;
}

.experience-list > ul > li {
    margin-bottom: 2rem;
}

.experience-list p {
    margin: 0;
    padding: 0;
}

.experience-list h4 {
    margin: 0;
    padding: 0;
}

.experience-paragraph {
    line-height: 1.3rem;
    margin-top: 0.5rem !important;
    text-align: justify;
}

