/* COMMON PALETTE */
:root {
    --background: white;
    --logo-color: rgba(0,165,170);
    --background-20: rgba(0,165,170,0.1);
    --normal: #153b59;
    --lighter: #0f4c75;
    --light: #8ab6d6;
    --orange: #e1701a;
    --green: #81b214;
}

/* FONTS */
@font-face {
    font-family: 'Geist';
    src:    url('/fonts/Geist-Bold.otf') format('opentype'),
            url('/fonts/Geist-Bold.woff') format('woff'),
            url('/fonts/Geist-Bold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Geist';
    src:    url('/fonts/Geist-Medium.otf') format('opentype'),
            url('/fonts/Geist-Medium.woff') format('woff'),
            url('/fonts/Geist-Medium.ttf') format('truetype'),;
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Geist';
    src:    url('/fonts/Geist-Regular.otf') format('opentype'),
            url('/fonts/Geist-Regular.woff') format('woff'),
            url('/fonts/Geist-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

html, body {
    background-color: var(--background);
    color: var(--normal);
    font-family: 'Geist';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    margin: 0;
    padding-bottom: 25px;
}

a, a:active, a:visited {
    color: var(--lighter);
}

a:hover, a:visited:hover {
    color: var(--light);
}

#header {
    width: 100%;
    box-shadow: 0px 0 5px 5px rgba(0,0,0,.1);
    height: 80px;
    margin-bottom: 40px;

    #logo {
        width: 85vw;
        max-width: 1200px;
        margin-left: auto; margin-right: auto;
        position: relative;

        img {
            position: absolute;
            top: 10px;
            left: 10px;
            height: 60px;    
        }
    }
}

#main {
    width: 85vw;
    max-width: 1200px;
    margin-left: auto; margin-right: auto;
}

.paragraph {
    padding-left: 35px;
    padding-right: 35px;
}

.paragraph:not(:first-child) {
    margin-top: 45px;
}

.paragraph.box {
    background: var(--logo-color);
    color: white;
    padding-top: 35px;
    padding-bottom: 35px;    
    border-radius: 6px;
    box-shadow: 1px 1px 4px 0px rgba(0,0,0,.1);
}

.foto {
    width: 150px;
    float: right;
    padding: 10px;
    margin-left: 20px;
    margin-bottom: 10px;
    border: solid 2px var(--normal);
    border-radius: 50%;
}

h1, h2, h3 {
    display: inline-block;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-bottom: 8px;
}

h1 {
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 16px;
}

h2 { 
    font-weight: 600;
    font-size: 24px;
}

h3 {
    font-weight: 400;
    font-size: 20px;
}

ul > li {
    text-align: justify;
}
