body{
    min-height: 100vh;
}
#about-blurb{
    display: grid;
    grid-template-columns: 1fr;
    padding: 40px;
    margin: 0 auto;
    width: 800px;
    justify-content: center;
    align-items: center;
    background: #fff1;
    font-weight: 300;
    font-size: 1.6rem;
} 
#book{
    padding: 30px;
    margin: 50px auto;
    width: 800px;
    font-size: 1.6rem;
    background: #fff1;
    font-weight: 300;
}
#bookRecommendations{
    padding: 30px;
    margin: 50px auto;
    width: 1000px;
    font-size: 1.6rem;
    font-weight: 300;
    display: grid;
    grid-template-columns: 1fr;
}

.book{
    background: #fff1;
    padding: 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.book h4{
    font-weight: 300;
}
.book h5{
    font-size: 1.2rem;
    font-weight: 300;
}
.book p{
    font-size: 1.2rem;
    margin: 10px;
}
.bookImage{
    width: 100%;
}
.book .author{
    margin-left: 30px;
    font-weight: 400;
}

#youtubeVideos{
    padding: 30px;
    margin: 50px auto;
    font-size: 1.6rem;
    font-weight: 300;
    max-width: 1000px;
}
#videoGrid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.video{
    background: #fff1;
    padding: 20px;
    display: grid;
}
.video iframe{
    justify-self: center;
}
.video h3{
    font-weight: 300;
    font-size: 1.6rem;
}
.video h4{
    font-weight: 600;
    font-size: 1.1rem;
}
#picasso{
    width: 100%;
}
#art-top{
    height: 500px;
    width: 1000px;
    padding: 40px;
    text-align: center;
    display: grid;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    opacity: .6;
}

@media only screen and (max-width: 1099px) {
    #about-blurb{
        width: auto;
        height: auto;
        font-size: 1.2rem;
    }
    #landing-blurb{
        grid-row: 2/3;
    }
    #logo{
        text-align: center;
        align-content: center;
    }
    #mobileNavButton {
        display: grid;
        margin: 0 auto;
    }
    #topbar{
        grid-template-columns: 1fr;
        grid-template-rows: 70px 50px 1fr;
        width: 100vw;
    }
    nav{
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-columns: 1fr;
        grid-column: 1/2;
        gap: 10px;
        margin: 20px;
        display: none;
    }
    #self-photo1{
        grid-row: 1/2;
        grid-column: 1/2;
    }
    #self-photo2{
        grid-row: 1/2;
        grid-column: 1/2;
    }
    #bookRecommendations{
        width: 100vw;
        padding: 0;
    }
    .book{
        grid-template-columns: 1fr;
        width: 100vw;
        padding: 0;
    }
    .bookImage{
        grid-row: 1/2;
        width: 100%;
    }
    #art-top{
        width: 100%;
        margin: 0;
        padding: 10px 0;
        height: auto;
    }
    #videoGrid{
        grid-template-columns: 1fr;
        max-width: 100vw;
    }
    #youtubeVideos{
        padding: 0;
        margin: 30px auto;
    }
    .video{
        padding: 0;
        max-width: 100vw;
    }
    .videoDetails{
        padding: 4px;
    }
  }