*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
font-family: "Courier Prime", monospace;
    font-size: 36px;
    line-height: 1.6;
}

p {
    font-family: "Courier Prime", monospace;
    font-size: 18px;
    line-height: 1.6;
    padding-bottom: 40px;
}

a:link {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

a:visited {
    color: black;
}

a:visited:active {
    color: white;
}

ul {
    text-align: left;
    list-style: inside;
    font-family: "Courier Prime", monospace;  
}

.blockquote:before {
  position: absolute;
  font-family: 'FontAwesome';
  top: 0;
  
  content:"\f10d";
  font-size: 200px;
  color: rgba(0,0,0,0.1);
   
}

.blockquote{
  font-size: 18px;
  width:100%;
  margin-bottom: 40px;
  font-family: "Courier Prime", monospace;
  font-style:italic;
  color: black;
  padding:1.2em 15% 1.2em 15%;
  border-left:8px solid black;
  line-height:1.6;
  position: relative;
  background:#EDEDED;
}

.blockquote::before{
  font-family:Arial;
  content: "\201C";
  color:black;
  font-size:4em;
  position: absolute;
  left: 10px;
  top:-10px;
}

.blockquote::after{
  content: '';
}

.blockquote span{
  display:block;
  color:black;
  font-style: normal;
  font-weight: bold;
  margin-top:1em;
}

.date {
    font-weight: bold;
    text-indent: 0px;

}

.page {
    display: flex;
    flex-wrap: wrap;
}

.nav {
    display: flex;
    justify-content: flex-start;
    font-size: 36px;
    font-weight: 700;
    padding: 40px;
}
    
.header {
    height: auto;
    justify-content: inherit;
    align-items: inherit;
}

.photo img {
    width: 100%;
    display: block;
    padding: 0px 0px 40px;
}

.content {
   padding: 40px;
}

.aside {
    display: block;
}

.notes {
    font-size: 18px;
}

img.illustration {
    padding-bottom: 40px;
    width: 100%;
}

img.monogram {
    padding-top: 40px;
    }

@media only screen and (max-width: 960px) {
    
    .nav {
        justify-content: center;
        height: auto;
        font-size: 36px;
        padding: 40px;
        content: ""; /* This is necessary for the pseudo element to work. */ 
        margin: 0 auto; /* This will center the border. */
        width: 50%; /* Change this to whatever width you want. */
        border-bottom: 1px solid black; /* This creates the border. Replace black with whatever color you want. */
    }
    
    ul {
        text-align: center; 
    }
    
    .content {
        width: 100%;
        margin: auto;
        text-align: center;
        height: auto;
        padding: 40px;
        line-height: 1.6;
        padding-bottom: 0;
    }
    
    p {
        font-size: 14px;
    }

   .blockquote {
        font-size: 14px;
    }

    .date {
    text-align: center;
    }
    
    .aside {
        justify-content: center;
        width: 100%;
        text-align: center;
        height: auto;
        padding-top: 40px;
        content: ""; 
        margin: 0 auto;
        width: 50%;
        padding-bottom: 40px; 
        border-top: 1px solid black;
    }
    
    .dedication {
        font-size: 12px;
        font-style: italic;
        line-height: 1.2;
        padding-bottom: 0;
    }
    
    img.illustration {
        padding-bottom: ;
        padding-top: ;
    }
    
    .notes {
        font-size: 14px;
      max-width:  350px;
        margin: auto;
    }   
    
}

@media only screen and (min-width: 961px) {
    
    .page {
        margin: 0 auto;
    }
    
    .nav {
        position: fixed;
        width: 20%;
    }
    
    .content {
        position: absolute;
        height: 100%;
        left: 20%;
        width:  80%;
        padding-right: 22.5%;
        overflow: scroll; overflow-x:hidden;
        padding-bottom: 0;
    }
    
    .aside {
        position: fixed;
        top: 200px;
        width: 20%;
        padding: 40px;
    }
    
    .dedication {
        font-size: 12px;
        font-style: italic;
        line-height: 1.2;
        padding-bottom: 0;
    }
    
    .illustration {
        position: relative;
        bottom: 400px;
        left: 40%;
    }
    
    .notes {
        width: 30%;
    }    

.blockquote p {
padding-left: 40px;
    }
}