body{
    font-family:baskerville;
    font-size:20px;
}
h1{
    text-align:center;
    margin-top:60px;
    margin-bottom: 90px;
}
h3{
    font-weight:normal;
}

ul{
    font-size:18px;
    list-style-type: none;
    margin-top:5px;
    padding-left:15px;
}

#nav h2{
    font-size:25px;
    margin-bottom:10px;
}
#container{
    display:grid;
    column-count: 2;
    grid-template: 
        "nav main";
    margin:20px;
}

#nav{
    grid-area: nav;
    margin-right:20px;
    height:800px;
}

#main{
    grid-area:main;
    height: 800px;
    overflow-y:auto;
    margin-right:40px;
    margin-left:30px;
}
#header{
    display:flex;
    border-bottom: 1px solid black;

}

#header p{
    margin-bottom: 5px;
}
#published{
  flex:1;
  display:flex;
  justify-content:flex-end;
    text-align:right;
}

#authors p{
    font-size:18px;
    font-style:normal;
    font-family:Helvetica, sans-serif;
        text-align:center;
}
#authors{
        border-bottom: 1px solid black;
}
#results{
    display:flex;
    flex-direction:column;
    justify-content:center;
}
#results img{
    width:90%;
}

#results p{
    margin-top:2px;
    font-size:15px;
    border-top:1px solid black;
    border-bottom:1px solid black;
}

