body {
    font-family: 'Arial', sans-serif;
    margin: 5px;
    overflow: hidden;
    background-color: white;
}

.bcolor {
    background-color: rgb(124, 85, 59);
}

.button1 {
    display: inline-block;
    /* top/bottom right/left */
    padding: 0px 20px;
    /* A unitless line-height applies a multiplier to the font size. line-height also overrides vertical padding */
    line-height: 1.8;
	border: none;
    margin-right: 3px;
    margin-bottom: 5px;
    /* border: 1px solid gray; */
    color: white;
    text-decoration: none;
    border-radius: 10px;
    /* Set the border radius to create semicircular ends */
    /* font-weight: bold; */
    font-size: 14px;
    /* transition:  0.3s ease; */
}

.button1:hover {
    background-color: rgb(197, 134, 92);
    /* Change color on hover */
    /* color: black; */
}

#outer {
    display: grid;
    /* The 4 children rows*/
    grid-template-rows: auto auto 1fr auto;
    /* height: 100vh; */
}

#header {
    color: white;
    /* border: 1px solid gray; */
    border-radius: 10px;
    padding: 0px;
    margin-bottom: 5px;
    font-size: 60px;
    /* font-weight: bold;  */
    /* font-style: italic; */
    font-family: "Protest Riot", sans-serif;

}
/* #buttonRow {
    margin-bottom: 5px;
} */

#headerInner {
    display: flex;
    /* apparently the default */
    /* flex-direction: row; */
    align-items: center;
}

#central {
    /* grid-row: 3; */
    background: gray;
    color: white;
    overflow-y: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/*CLICKABLE BLOG TITLES AND DATES*/
.title {
    padding-left: 10px;
    padding-bottom: 10px;
    background: inherit;
    color: inherit;
    font-size: 20px;
    border: none;
    width: 100%;
    text-align: start;
    width: auto;
}

.title:hover {
    text-decoration: underline;
}

.date {
    font-size: 12px;
    padding-top: 5px;
    padding-left: 10px;
    width: auto;
}

#blogTitle{
    font-size: 24px;
    text-align: center;
}
#blogDate{
    font-size: 12px;
    text-align: center;
}
#blogText{
    font-size: 16px;
    text-align: left; 
    padding: 10px;
}

/* FOOTER */
#footer {
    /* grid-row: 4; */
    color: white;
    text-align: center;
    line-height: 1.8;
    margin-top: 5px;
    padding-bottom: 5px;
    font-size: 12px;
}