@media print {
    @page {
        size: A4;
    }

    html, body {
        width: 210mm;
        height: 297mm;
        margin: 0;
        padding: 0;
    }

    .download-pdf {
        display: none;
    }
}

@media screen {
    html {
        width: 100%;
        display: flex;
        justify-content: center;
        background-color: #f0f0f0f0;
    }

    body {
        background-color: white;
    }
}

.download-pdf {
    width: 100%;
    display: flex;
    justify-content: center;
}

body {
    width: 210mm;
    height: 297mm;
    /*margin: 15mm;*/
    padding: 15mm;
    box-sizing: content-box;
    /*font-family: "Source Sans 3";*/
    /*font-family: "Work Sans";*/
    /*font-family: "Epilogue";*/
    font-family: "Rubik";
}

h1 {
    font-family: 'Inter';
    font-size: 30pt;
}

h2 {
    font-family: 'Inter';
    font-size: 24pt;
    background-color: #c9daf8;
    padding-top: 10pt;
    padding-bottom: 10pt;
    padding-left: 0.5em;
    width: 75%;
    margin-top: 0;
    margin-bottom: 0;
    /*padding-right: 2em;*/
    /*width: fit-content;*/
}

h3 {
    font-family: 'Inter';
    font-size: 14pt;
    margin-bottom: 0;
    font-weight: 700;
}

ul {
    margin-top: 0;
    padding-inline-start: 1em;
    list-style: none;
}

ul li {
    padding-bottom: 0.3em;
}

li strong {
    font-weight: 600;
    background-color: #c9daf8;
}

span.tag {
    font-size: 10pt;
    background-color: #c9daf8;
    padding: 0.4em;
    margin-right: 1em;
    border-radius: 5pt;
    font-weight: 500;
}

span.company {
    background-color: #c9daf8;
}

p.about {
    margin-top: 0;
    margin-bottom: 0.5em;
    font-size: 10pt;
}

a {
    color: inherit;
    text-decoration: inherit;
}