.layout {
	width: 100%;
	display: grid;
	grid:
	". left . right ." 100%
	/ 2.5% 20% 1% 74% 2.5%;
}

.headerBox {
	border: 2px solid black;
	width: 75%;
	max-height: none;
	margin: auto;
	padding: 15px;
	background-color: beige;
	border-radius: 15px;
}

.centerBox {
	grid-area: right;
	border: 2px solid black;
	max-height: none;
	padding: 15px;
	background-color: beige;
	border-radius: 15px;
}

.sideBar {
	grid-area: left;
	border: 2px solid black;
	max-height: none;
	padding: 15px;
	background-color: beige;
	border-radius: 15px;
}

body {
    font-size: 18px;
    color: #005C5C;
    background-color: gray;
    font-family:'Times New Roman', Times, serif;
}

h1 {
    font-size: 250%;
}

a {
	font-size: 24px;
    text-decoration: underline;
	color: #005C5C;
}

footer {
    font-size: 12px;
    color: black;
    background-color: white;
    text-align: center;
}