#logo {
    filter: sepia(30%) opacity(30%);
    mix-blend-mode: multiply;
}
main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    justify-content: space-between;
}
body {
    font-size: 18px;
    font-family: "Cormorant Garamond"
}
.sidebar {
    border-right: 1px solid;
    padding-right: 5px;
    margin-right: 5px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
ul {
    margin: 0px;
    padding-left: 25px;
}
header ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
header .name {
    font-size: 200%;
    font-weight: 600;
}
header .title {
    font-size: 125%;
}
header span {
    margin-right: 2ex;
    font-weight: 600;
    border-left: 1px solid;
    padding-left: 5px;
}
header .citizen {
    font-variant: small-caps;
    margin: 3px 0px;
}
.contact {
    text-align: right;
}
.contact li {
    margin: 0.5ex 0ex;
}
h1,h2 {margin: 0.4ex 0ex;}
h1 {font-size: 150%;}
h2 {
    margin-left: 1ex;
    font-variant: small-caps;
    font-size: 125%;
} 
p {margin: 0ex 0ex;}

@media screen {
    body {
        margin: 5ex;
        background: url(Parchment.png);
    }
}

@media only screen and (max-width: 650px) {
    img {display: none;} 
    main {
        grid-template-columns: 1fr;
    }
    .sidebar {
        border: 0px;
    }
    header {
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 5ex;
    }
    .contact {
        background-color: rgba(128,128,128,0.5);
        text-align: center;
        margin: auto;
        padding: 5px;
    }
}

@media print {
    #logo {
        display: none;
    }
    main {
        grid-template-columns: 200px  1fr;
    }
    body {font-size: 13.5px;}
    a {color: black; text-decoration: none;}
    #pdf {display: none;}
}

body {
    position: relative;
}
#pdf {
    position:absolute;
    top: -30px;
    right:5px;
    text-decoration: none;
    background-color: blue;
    color: white;
    border: 3px grey outset;
    border-radius: 8px;
    padding: 1px 8px;
    cursor: pointer;
}
footer {
    text-align: center;
    font-style: italic;
}
