body {
    margin: 0;
    background-color: gray;
    font-family: sans-serif;
    color: darkblue;
}

section {
    margin: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-style: solid;
    border-radius: 12px;
    background-color: lightgray;
}

h1 {
    font-size: 36px
}

h2 {
    font-size: 30px
}

h3 {
    font-size: 24px
}

h4 {
    font-size: 20px
}

svg:hover {
    fill: red;
}

.menu {
    position: fixed;
    top: 10px;
    right: 10px;
    align-items: flex-end;
    z-index: 99;

}

.menuLogo {
    margin-right: 10px;
    height: 40px;
}

.main {
    position: absolute;
    top: 10px;
}

.logo {
    display: block;
    margin-top: 10px;
    margin-right: auto;
    margin-left: 0px;
    align-items: flex-end;
    height: 60px;
}
.vcard {
    color: black;
} 

.footer {
    bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    padding: 12px 12px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdownContent {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
    right: 10px;
    z-index: 99;

}

.dropdownContent a {
    color: lightgray;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdownContent a:hover {
    background-color: darkblue;
}

.dropdown:hover .dropdownContent {
    display: block;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    height: auto;
}

.credential {
    width: 400px;
    height: 200px;
    margin: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 24px;
    background-color: lavender;
    font-size: 18px;
    color: black;
    border-radius: 5px;
}

.logoJobs {
    height: 50px;
}

@media (max-width:1100px) {
    #menuLogo {
        display: none; !important
    }
}

@media (min-width:1101px) {
    #menuLogo {
        display: inline; !important
    }
    #home {
        margin: auto;
        width: 500px;
        }
}

@media print {
    .menu {
        display: none;
    }
    body {
        transform: scale(0.8);
    }

    a[href]::after {
        content: " <"attr(href)">";
        color: #888;
        background-color: inherit;
        font-style: italic;
        size: 80%;
    }
    .pagebreak {
        page-break-after: always;
    }
    body {
    width: 100%
}
}
@page { margin: 1cm }
