html {
    min-height: 100%;
}  
body {
    color: #202123;
    font-family: 'Segoe UI';
    width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;   
}
#bodycontainer {
    padding: 10px;
    background-color: white;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    height: 10px; 
    margin-bottom: 10px;
    border: 1px solid gray;
    background-color: white;
    filter: drop-shadow(4px 4px 1px lightgray);
} 
#bannerimage {
    background-image: url(../images/blogbanner2.jpg);
    background-size: cover;
    background-position: center;
    height: 100px;
    width: 760px;
    margin-bottom: 10px;
    border: 1px solid gray;
    filter: drop-shadow(4px 4px 1px lightgray);
}
nav > a, nav > a:visited {
    color: black;
    margin-left: 5px;
    padding: 1px;
    transition: .3s;
}
nav > a:hover, nav > a:visited:hover {
    color: white;
    background-color: #202123;
    margin-left: 5px;
    padding: 1px;
    transition: .3s;
}
#pagetitle {
   font-family: arial;
   letter-spacing: 10px;
   font-size: 20px;
}
main {
    padding: 5px;
    background: white;
}
/* A complete entry in the index */
.indexentry {
    margin: 0px;
}
/* the link in the index entry - also the title */
.postlink {
    color: #202123;
    transition: .3s;
}
.postlink:hover {
    color: white;
    background-color: #202123;
    transition: .2s;
}

article {
    padding: 00px;
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: justify;
}
/* the title of the post, within in the post (not in the index) */
.posttitle {
    font-weight: 600;
    margin-top: 10px;
    font-size: 20px;
}

.date {
    color: gray;
    font-weight: normal;
    font-family: verdana;
    margin-top: 10px;
    font-size: 14px;
}
/* for making rows of images to place in posts*/
.picturesection {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    margin: 20px;
    flex-wrap: wrap;
}
#polaroid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    padding: 5px;
    margin: 5px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: white;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.466));
}
#polaroid > p {
    font-family: ms UI gothic;
    color: gray;
    font-style: italic;
    margin: 10px;
    margin-right: auto;
}
#polaroid > img {
    margin: 5px;  
    height: 200px;
}

#backforth {
    text-align: center;
    margin: 10px;
}
#backforth > a, #backforth > a:visited {
    margin: 10px;
    color: rgb(80, 79, 79);
}
#backforth > a:hover, #backforth > a:visited:hover {
    margin: 10px;
    background-color: rgb(80, 79, 79);
    color: white;
}
footer {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
}
footer > p {
    margin-bottom: 5px;
}
footer, footer > p > a, footer > p > a:visited {
    color: rgb(80, 79, 79);
}
footer > p > a:hover, footer > p > a:visited:hover {
    background-color: rgb(80, 79, 79);
    color: white;
}
hr {
    border-color: white;
}



