:root {
    --primary-color: #519e8a;
    --secondary-color: #476a6f;
    --positive-color: #7eb09b;
    --negative-color: #ecbeb4;
    --accent-color: #c5c9a4;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    padding: 10px;
    border: none;
    background-color: var(--secondary-color);
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
    background-color: var(--accent-color);
    cursor: pointer;
}

body {
    min-height: 100vh;
}

.actions {
    max-width: 8.5in;
    margin: auto;
    margin-top: 75px;
    margin-bottom: 15px;
    display: flex;
    justify-content: end;
}

#print-button {
    margin-right: 5px;
}

.document {
    margin: auto;
    max-width: 8.5in;
    border-radius: 3px;
    margin-bottom: 50px;
    border: 0px solid black;
    box-shadow:
        0px 0px 20px rgb(0 0 0 / 40%);
}

.document .body {
    padding: 2em 3em;
    font-size: 11pt;
}

.document li {
    list-style: disc;
    margin-left: 2em;
}

.skills {
    display: flex;
    justify-content: space-evenly;
}

.skills li {
    list-style: none;
    margin: 0;
}

.gradient {
    display: block;
    height: 20px;
    width: 100%;
    margin: 0px 0px;
    padding: 0px 0px;
    background: linear-gradient(90deg, #1565C0, #00838F);
    opacity: 0.3;
}

.body>.name {
    font-weight: 700;
    font-size: 1.5em;
    letter-spacing: 1px;
    color: #424242;
    margin-top: 0;
    margin-bottom: 0.25pt;
}

.section-header {
    background: linear-gradient(90deg, #1565C0, #00838F);
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 0px;
    margin: 10px 0px;
    color: white;
}

.logo {
    max-height: 50px;
    position: absolute;
    translate: 20px -15px;
    opacity: 0.3;
}

.employer {
    display: flex;
    justify-content: space-between;
    color: #00838F;
    font-weight: 700;
    margin-bottom: 10px;
}

.title {
    font-style: italic;
    font-weight: 500;
    margin-bottom: 5px;
    margin-left: 1em;
}

.project {
    margin-left: 1em;
}

.project-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 0.5em;
    margin-top: 0.5em;
}

@media print {
    body * {
        display: none !important;
        font-size: 11pt;
    }

    .printable,
    .printable * {
        display: block !important;

    }

    .non-printable,
    .non-printable * {
        display: none !important;
    }

    .document {
        border-radius: none;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }

    .section-header {
        color: #222222;
        margin-top: 0.5pt;
        margin-bottom: 0.25pt;
        font-size: 12pt;
    }

}