/* 'mobile' */
@media (min-width: 0px) {
    figcaption {
        font-size: 12px;
        font-style: italic;
        font-family: Courier;
    }
    .bio {
        width: 90%;
        /* font-size: 2vw; */
        font-size: .6em;
    }
    #fullnav {
        /* visibility: hidden; */
        display: none;
    }
    #mobilenav {
        visibility: visible;
        text-align: center;
    }
}

/* full size */
@media (min-width: 800px) {
    figcaption {
        font-size: 1vw;
        font-style: italic;
        font-family: Courier;
    }
    .bio {
        width: 700px;
        /* font-size: 4vw; */
        font-size: 1em;
    }
    #fullnav {
        /* visibility: visible; */
        display: block;
    }
    #mobilenav {
        visibility: hidden;
    }
}

body {
    font-family: 'Copperplate', 'Georgia', serif;
    font-size: 1.9em;
}

A:link    {color: #000000; text-decoration: none; font-weight: bold;}
A:visited {color: #000000; text-decoration: none; font-weight: bold;}
A:active  {color: #000000; text-decoration: none; font-weight: bold;}
A:hover   {color: #000000; text-decoration: none; font-weight: bold; text-decoration: underline;}

