body{
    margin: 0px;
    font-family: 'Open Sans', sans-serif;
    background-color: #efefef;
}
.header{
    height:150px;
    background-color: #a5d8ff;
}
.header p, .header h1{
    margin:0px;
}
.header>div{
    height:100%;
    display:flex;
    align-items: center;
    max-width: 1100px;
    margin: 0px auto;
}
.header>div div{
    height:100%;
    display:flex;
    align-items: center;
}
.header>div div:nth-of-type(2){
    margin:0px 0px 0px auto;
}
.header>div div ul{
    height:100%;
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
}
.header>div div ul li, .header>div div ul li a{
    height: 100%;
}
.header>div div ul li{
    position: relative;
}
.header>div div ul li a{
    display: flex;
    align-items: center;
    text-decoration: inherit;
    color: inherit;
    font-weight: 600;
    margin: 0px 15px;
}
.header>div div ul li a:after{
    background-color: white;
    content: '';
    width: 0px;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: width .2s ease;
    transition: width .2s ease-out;
}
.header>div div ul li:hover>a:after{
    width: 100%;
}
.page{
    max-width: 1100px;
    min-height: calc(100vh - 150px - 70px);
    margin: 0px auto;
    box-sizing: border-box;
    padding: 20px;
    background-color:white;
}
.featuredTags{
    background-color:#a5d8ff;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 5px;
}
.featuredTags p{
    margin: 0px 0px 5px 0px;
}
.featuredTags ul{
    margin:0px;
    padding: 0px;
    list-style: none;
}
.featuredTags ul li{
    display:inline-block;
    margin-right:10px;
}
.listBlogPost{
    margin-top: 20px;
}
.listBlogPost:nth-of-type(1){
    margin-top: 0px;
}
.listBlogPostMetadata .postDate, .BlogPostMetadata .postDate{
    color:grey;
}
.listBlogPostMetadata .postDate:before, .BlogPostMetadata .postDate:before{
    content: " - ";
}
.listBlogPostMetadata .postAuthor:hover, .BlogPostMetadata .postAuthor:hover{
    color:#a5d8ff;
}
.listBlogPostTitle, .BlogPostTitle{
    font-size: 38px;
    font-weight: 600;
}
.listBlogPostTitle a{
    text-decoration: inherit;
    color:inherit;
}
.listBlogPost:hover .listBlogPostTitle, .listBlogPost:hover .listBlogPostContinue a{
    color: #a5d8ff;
}
.listBlogPostContinue{
    margin-top: 5px;
}
.listBlogPostContinue a{
    text-decoration: inherit;
    color: inherit;
}

/*Styles associated with tags*/
div.BlogPostTags a{
    text-decoration: none;
    background-color: #a5d8ff;
    color: black;
    font-size: 14px;
    box-sizing: border-box;
    padding: 5px;
    border-radius: 15%;
    margin-right: 5px;
}
p.BlogPostTags{
    margin: 10px 0px 8px 0px;
    font-size: 14px;
}

/*Styles associated with the pageinator*/
.pageinator{
    display: flex;
    list-style: none;
    padding: 0px;
}
.pageinatorPage{
    margin: 2.5px;
    background-color: #a5d8ff;
    width: 30px;
    height: 30px;
    cursor:pointer;
    border-radius: 20%;
}
.pageinatorPage:hover{
    background-color:#d1ebff;
}
.pageinatorPage a{
    text-decoration:none;
    color:black;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* These styles represent element styles */
.postHeader{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: rgb(50, 49, 48);
    margin-top: 10px;
}
.postText{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    white-space:pre-wrap;
    margin-top: 5px;
}
.postImage{
    text-align: center;
}
.postImage img{
    max-width: 530px;
}
.postImage p{
    margin-top: 5px;
    font-style: italic;
    color: rgb(126, 126, 126);
}
@media only screen and (max-width: 600px) {
    .postImage img{
        max-width: 100%;
    }
}
.postQuote{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: italic;
    color: rgb(20, 20, 20);
    text-align: center;
    background-color: #efefef;
    margin-top: 5px;
}
/* General blog post styles */
.BlogPostContent p {
    line-height: 1.7;
}

/* Styles associated with Markdown formatting */
p code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
}
pre:has(code) {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}
blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    border-left: 5px solid #eee;
}
/* table originally .table */
table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}
/* table originally table */
table {
    background-color: transparent;
}
/* table originally table */
table {
    border-spacing: 0;
    border-collapse: collapse;
}
/* table originally .table */
table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
}
/* table originally .table */
table > thead > tr > th, table > tbody > tr > th, table > tfoot > tr > th, table > thead > tr > td, table > tbody > tr > td, table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}
/* table originally .table-striped */
table > tbody > tr:nth-child(2n+1) > td, table > tbody > tr:nth-child(2n+1) > th {
    background-color: #f9f9f9;
}
figcaption {
    margin-top: 5px;
    font-style: italic;
    color: rgb(126, 126, 126);
}
figure img{
    max-width: 530px;
}

/*Styles associated with the footer*/
.footer{
    height:70px;
    background-color: #a5d8ff;
}
.footer p{
    margin:0px;
}
.footer>div{
    height:100%;
    display:flex;
    align-items: center;
    max-width: 1100px;
    margin: 0px auto;
}