@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;600&family=Lora:wght@600&display=swap');
a:link{
    text-decoration: none;
}
a:link, a:visited{
    color:  #666;
}
h1 a:link, h1 a:visited{
    color: rgb(0, 0, 0);
}

a:active{
    color: #DEB887;
}
a:hover{
    color:#00ddff;
}
ul{
    list-style-type: none;
    line-height: 2em;
    font-family: 'Libre Franklin', sans-serif;
    font-family: 'Lora', serif;
    margin: -5px;
    padding: 10px;

}
ul{
    color: #d0d0d0;
}
.post-date,p{
    font-family:Arial, Helvetica, sans-serif;
    color: black;
}
.post-date{
    font-family: 'Libre Franklin', sans-serif;
    font-family: 'Lora', serif;
    color: black;
    text-transform: uppercase;
    text-align:right;
    border-bottom: 1px solid #d0d0d0;
    font-size: 1.7em;
}
body{
    display: block;
    max-width: 100%;
    margin: 0;
    height: inherit;
    overflow-x: hidden;
}
div{
    margin: 0;
}
article{
    background-color: white;
    padding: 2em;
    margin-bottom: 1em;
    
}h1{
    font-size: 5em;
}
h1,h2{
    font-family: 'Libre Franklin', sans-serif;
font-family: 'Lora', serif;
}
h2{
    font-size: 2.2em;
}
nav{
    border-top: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    font-size: 1.5em;
    text-transform: uppercase;

}
header{
    margin: 0 auto;
    text-align: center;
}
main{
    padding-top:2em;
}
figure{
    text-align: center;
    align-items: center;
    display: flex;
}
figure img{
    margin: auto;
}

  @media only screen and (min-width: 700px) {
    body{
        margin: 40px;
    }
    article{
        display: grid;
        grid-template-columns: 200px 1fr;
        grid-template-rows: auto;
        gap: 10px;
        padding: 0;
        margin: 0;
    }
    nav{
        padding-right: 45px;
    }
    ul{
        text-align: right;
        margin-right:10px;
    }
    li{
        display: inline;
        
    }
    li a{
        padding: 10px;
    }
    .post-date{
        padding-right: 10px;
        border-right: 1px solid #d0d0d0;
        border-bottom: none;
        grid-column-start: 1;
        grid-column-end: 1;
    }
    section{
        padding-bottom: 20px;
        border-bottom: 1px solid #d0d0d0;
        width: 100%;
        grid-column-start: 2;
        grid-column-end: 2;
    }
    figure img{
        width: 30%;
    }
  }