body {
    margin: 0;
    width: 100%;
    font-family:'Inter', sans-serif;
}
.frame{
    margin: 10px auto;
    width: 70%;
    display: flex;
    align-items: center;
}
nav ul, footer ul {
    padding: 0px;
    list-style: none;
}
nav ul li, footer ul li {
    display: inline;
    margin-right: 20px;
}
a {
    text-decoration: none;
    color: #000000;
    cursor: pointer;
}
a:hover {
    text-decoration: underline;
    opacity: .7;
}
h1 {
    font-size: 3em;
}
p {
    font-size: 1.5em;
    line-height: 1.4em;
    color: #333;
}
footer {
    border-top: 1px solid #d5d5d5;
    font-size: .8em;
    margin-top: 50px;
}

ul.posts { 
    margin: 20px auto 40px; 
    font-size: 1.5em;
}

ul.posts li {
    list-style: none;
}

.hero{
    background: url(https://i.imgur.com/EkWkzt1.png) no-repeat center bottom;
    padding: 110px 0 130px 0;
    background-color: #000;
    background-size: cover;
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    -o-background-size: 100% auto;
    background-size: 100% auto;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: visible;
    text-shadow: 0 0 6px #402c2d;
    min-height: 300px;
    display: flex;
}

.hero_blurb{
    color: white;
}

@media only screen
and (max-width : 600px) {
    body{
       font-size: 100%; 
       min-width: 320px;
    }
    h1{
        font-size: 2em;
    }
    p{
        font-size: 1.2em;
    }
    .hero_blurb{
        margin-top: 100px;
    }
}
