@import url('https://fonts.googleapis.com/css?family=Crimson+Text|Josefin+Slab');
body{
    margin: 0;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: minmax(15vh, auto) minmax(80vh, auto) minmax(5vh, auto);
    grid-template-areas: 
        "header"
        "content"
        "footer";
}
#header{
    grid-area: header;
    background-color: grey;
    cursor: default;
}
#header #intro p{
    text-align: center;
    user-select: none;
    color: white;
    font-family: 'Josefin Slab', serif;
    font-size: 40px;
    margin-top: 10px;
}
#mainlinks{
    text-align: center;
    user-select: none;
}
#mainlinks span{
    color: white;
    cursor: pointer;
    padding-right: 100px;
}
#mainlinks span:hover{
    color: #e5e5e5;
}
#mainlinks span:active{
    color: #cccccc;
}
#mainlinks span a{
    color: white;
    cursor: pointer;
    padding-right: 100px;
    text-decoration: none;
}
#mainlinks span a:hover{
    color: #e5e5e5;
}
#mainlinks span a:active{
    color: #cccccc;
}
#mainlinks span:last-child{
    padding-right: 0;
}
#mainlinks .activelink{
    font-weight: bold;
}
#content{
    padding-top: 15px;
    grid-area: content;
    background-color: darkblue;
    color: white;
    padding-left: 25vw;
    padding-right: 25vw;
    text-align: center;
    font-size: 20px;
    font-family: 'Crimson Text', serif;
}
#content p{
    text-align: justify;
}
.prof{
    border-radius: 250px;
    height: 250px;
    width: 250px;
}
#content #bio{
    display: none;
}
#teaching{
    display: none;
}
#content ul{
    list-style-type: none;
    text-align: left;
}
#content ol{
    text-align: left;
}
#content #creative ol li p{
    font-style: italic;
}
#content a{
    color: white;
}
#content a:visited{
    color: white;
}
#content #teaching .link{
    margin-left: 20px;
    font-size: .8em;
}
#content #teaching .caption-i1{
    font-size: .8em;
}
#content #teaching .caption-i2{
    font-size: .8em;
}
#broadcast{
    display: none;
}
#scholarship{
    display: none;
}
#creative{
    display: none;
}
#footer{
    grid-area: footer;
    background-color: darkblue;
    color: white;
    text-align: center;
    border-top: 1px solid #606060;
}
#footer #sitecredit{
    font-size: .8em;
}
.toggled{
    display: block !important;
}