/* General */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,400;1,700&display=swap');
@page { size: A4; }
@media print { 
    body { font-size: 87.5%; } 
    h1.name { 
        margin-top: -0.2em;
        padding: 0; 
    }
    .entry {
        page-break-inside: avoid;
        break-inside: avoid;
    }
    .empty {
        margin: 200px;
    }
    .rodo {
        margin-top: 1em;
        margin-bottom: 1em;
        font-size: 70%;
        color: #808080;
    }
}

:root {
    color-scheme: light;
    --main-color:#0D47A1;
}

* {
    padding: 0;
    margin: 0;
    border: solid 0px #888;
}

ul {
    list-style: inside;
}

body {
    font-family: 'Lato';
    max-width: 874px;
    margin: 0 auto;
    text-align: justify;
}

.columns {
    display: flex;
    column-gap: 20px;
}

.right-column {
    width: 52em;
}

a {
    color: var(--main-color);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--main-color);
    text-transform: capitalize;
    margin-bottom: 0.5em;
}

h2 {
    margin-top: 1em;
    border-bottom: solid 1px var(--main-color);
    font-size: 1.2em;
}

/* Contact */

h1.name,
h1.label,
section.contact {
    text-align: center;
}

h1.name {
    font-size: 2.4em;
}

h1.label {
    font-size: 2em;
}

section.contact {
    display: inline;
    font-size: 1em;
}

ul.contact li{
    display: inline;
}

/* Portraiture */

/* .portraiture {
    margin-bottom: 0.5em;
} */

/* Work & Education */

.entries {
    list-style-type: none;
}

.entry {
    margin-bottom: 0.5em;
}

.entry>.first-line {
    display: flex;
    justify-content: space-between;
}

.entry .first-line {
    font-weight: bold;
}

.entry .time {
    font-size: 0.8em;
    font-style: italic;
}

.entry .position {
    font-size: 1.1em;
}

.entry .summary {
    margin-top: 0.25em;
    margin-bottom: 0.25em;
}

.entry .highlights {
    padding-left: 1.25rem;
    list-style-position: outside;
}

/* Skills */

.skills>h5 {
    font-size: 1em;
    margin-top: 0.5em;
} 

.skills * {
    text-align: left;
}

/* Misc */

/* RODO */

.rodo {
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 70%;
    color: #808080;
}

/* ********** */

