body {
    font-family: "Patrick Hand";
    background-image: url("https://mooshpuppii.com/journal/checkbg.jpg");
    line-height:30px;
    font-size: 17px;
}

#container{
    background-image: url(https://mooshpuppii.com/journal/yellobg.png);
    margin: auto;
	margin-top: 160px;
	margin-bottom: 40px;
	position: relative;
	display: grid;
	grid-template-areas:
		"header header"
		"margin body";
	grid-template-rows: 45px 665px;
	grid-template-columns: 160px 590px;
	max-width: 750px;
    border-radius: 20px;
    border: solid 2px;
    overflow:hidden;
}

#header {
	position: relative;
	grid-area: header;
	background: #2f3e2b;
    border-radius: 12px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

nav {
	text-align: left;
	padding: 15px;
    padding-top: 13px;
	grid-area: margin;
	border-right: 1px solid;
}

main {
    grid-area: body;
    margin-left: 5px;
    overflow: auto;
}

.patrick-hand-regular {
  font-family: "Patrick Hand", cursive;
  font-weight: 400;
  font-style: normal;
}
