
body{
    margin: 0px;
    font-family: 'Barlow Semi Condensed', sans-serif;
    background-color: whitesmoke;
    font-size: 100%;
    line-height:1.5;
}
p{
    font-size: 1.25em;
    margin:0px;
}

header{
    background-image: url("images/books.jpg");
    background-size: cover;
    background-position: center;
    height: 45vh;
}
nav{
    display: flex;
    justify-content: space-between;
    background-color: #eef0eb;
    width: 100%;
    padding: 2px;
    height: 20vh;
    align-items:center ;
    position: fixed;
    z-index: 99;
    box-shadow: 0px 0px 20px -5px #463f37;
}
#navleft{
    display: flex;
    align-items: center;
    

}
hr{
    margin:100px 0px;
}
img{
    border-radius: 5px;
}

#navleft img{
    height: 90%;
    transform: rotate(5deg);
    border-radius: 5px;
    position: relative;
}
#title{
    display: flex;
    align-items: center;
    font-size: 4em;
    padding: 10px 30px;
    font-variant: small-caps;
}
#p {
    margin-left: 10px;
  }
  #arker {
    margin-left: -5px;
  }
#quote{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 30px;
}
main{
    width: 80%;
    margin: 0px auto;
}
#fthodr{
    margin: 0px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    color: #eef0eb;
    padding:40px 0px;
}
#fthodrtxt{
    width:50%;
    min-width:360px;
    flex-grow: 1;
    padding:40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#fthodr p{
    width: 100%;
    color: #463f37;
}
#fthodrimg{
    width:calc(30% - 80px);
    min-width:300px;
    position: relative;
}
#fthodrimg #fthodrimg1{
    box-shadow: #463f37 0px 0px 20px 5px;
    width:100%;
}
#fthodrimg2 {
  position: absolute;
  width: 40%;
  left: -90px;
  bottom:-60px;
  transform: rotateZ(-20deg);
}
h1{
    color: #437c90;
    font-size: 1.75em;
    text-align: center;
}
#fthodr h3, h4{
    margin: 2px auto;
    color: #437c90;
}
#fthodr h4{
    padding: 5px;
}
#threeBooks{
    display: flex;
    flex-wrap: wrap; 
    width:100%; 
}
#threeBooks article{
    width: calc(50% - 80px);
    flex-grow: 1;
    min-width:260px;
    margin: 30px;
    padding: 10px;
    text-align: center;
}
#threeBooks article p{
    margin:20px auto;
    max-width: 720px;
}
#quotesTwo{
    display: flex;
    flex-wrap: wrap;
    padding:40px 0px;
}
#quotesTwo article{
    text-align: center;
    width: calc(33.333% - 80px);
    min-width:200px;
    flex-grow: 1;
    padding:40px;
    background-image: linear-gradient(#eef0eb,rgb(225,225,225));
}
#quotesTwo h4{
    color:#437c90;
    text-align: center;
}
#quotes{
    display: flex;
    flex-wrap: wrap;
    padding:0px 0px 40px 0px;
}
#quotes article{
    text-align: center;
    width: calc(33.333% - 80px);
    min-width:200px;
    flex-grow: 1;
    padding:40px;
    background-image: linear-gradient(#eef0eb,rgb(225,225,225));
}
#quotes h4{
    color:#437c90;
    text-align: center;
}
#bio{
    padding:40px 0px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
}
#biotxt{
    width:calc(40% - 80px);
    padding:40px;
    text-align: center;
    min-width:300px;
    flex-grow: 1;
}
#biotxt h1{
    margin-bottom:40px;
}
#bio img{
    width:calc(40% - 80px);
    min-width:300px;
    flex-grow: 1;
    padding:40px;
    border-radius: 50%;
}
.btn {
  text-decoration: none;
  outline: 2px solid black;
  border-radius: 2px;
  padding: 15px 60px;
  margin-top: 10px;
  color: black;
  transition: 0.3s all ease-in-out;
  font-size: 1.25em;
}
.btn:hover {
  color: white;
  background-color: #437c90;
}
footer{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    height: 20vh;
    background-color: #463f37;
}
footer p{
    color: whitesmoke;
    font-variant: small-caps;
    padding: 10px;
    font-size: 1.25em;
}
footer a{
    font-size: 1.25em;
    text-decoration: none;
}






@media screen and (max-width: 900px){
    nav{
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        height:13vh;
        line-height: 1;
    }
    nav img{
        display: none;
    }
    #title{
        font-size: 2em;
        margin:0px;
        padding:0px;
    }
    #quote{
        font-size: 1em;
        padding: 0px;
        margin:0px;
    }
    header{
        background-position: center;
    }
}