@media only screen and (min-width: 760px) {
    h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    h2 {
        font-size: 2rem;
    }
    .hamburger {
        display: none;
    }
    nav hr {
        display:block;
        color: #18A999;
    }
    nav ul{
        display: flex;
        flex-direction: row;
        list-style-type: none;
        justify-content: space-between;
        font-size: 1.5rem;
        margin: 5px;
        background-color:  #F5F5F4;
        color: black;
    }
    li a :hover {
        background-color: #18A999;
        margin: .1rem;
    }
    ul li .active {
        font-weight: bold;
    }
    .float-left, .float-right {
        margin-bottom: 3rem;
    }
    .float-left h3, .float-right h3 {
        font-size: 2rem;
        text-align: center;
    }
    .float-left, .float-right p {
        font-size: 1.5rem;
        text-align: left;
    }
    .float-left img, .float-right img {
        width: 350px;
        padding-right: 10px;
        padding-left: 10px;
    }
    .float-left img {
        float: left;
    }
    .float-right img {
        float: right;
    }
    .bio p{
        font-size: 1.5rem;

    }
    
    .author-pic img{
        max-width: 500px;
    }

    footer {
        font-size: 1.5rem;
    }
}