*{
    /* m o b i l e    m o b i l e    m o b i l e */
	
    margin: 0;
    padding: 0;
    background-color: #FAF8E9;
}

.responsive {
	max-width: 100%;
	height: auto;
}

.grid {
    font-family: Arial;
    font-size: 20px;
    color: #F84108;
    width: auto;
    margin: 10px;
	
    display: grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    grid-template-rows:auto auto auto auto auto auto auto 50px;
	justify-content: center;
    grid-gap: 10px;
}

.nav {
	grid-area: nav;
	text-align: center;
	grid-row: 1 / 2;
	grid-column: 1 / 5;
}

.nav ul {
	list-style: none;
	
}

.nav ul li a {
	text-decoration: none;
	font-family: Cormorant Garamond;
	color: #FF3300;
	text-align: center;
	display: block;
	padding: 7px 7px 7px 7px;
}

.nav a, ul.nav a:visited {
	padding: 5px 0 10px 0;
	display: block;
	text-decoration: none;
	color: green;
	
}
.nav a:hover, ul.nav a:active, ul.nav a:focus {
	background: #6F7D94;
	color: #000;
}

.title {
    	grid-area: title;
    	/*background-color: green;*/
    	text-align: center;
		color: #000000;
		grid-row: 2 / 3;
		grid-column: 1 / 5;
		padding: 10px;
		justify-content: center;
}

.image {
	grid-area: image;
	text-align: center;
	/*background-color: blueviolet;*/
	grid-row: 3 / 4;
	grid-column: 1 / 5;
	grid-auto-flow: row;
	padding:10px;
	/*justify-content: top;*/
}

.contents {
    grid-area: contents;
    /*background-color: palevioletred;*/
    text-align: justify;
    /*text-indent: 1.5em;*/
   /* color: #000000;*/
    grid-row: 4 / 5;
    grid-column: 1 / 5;
    padding: 20px;
    color: #011B53;
}

.sidebarA {
	grid-area: sidebarA;
	/*background-color: royalblue;*/
	text-align: center;
	font-size: 16px;
	grid-row: 5 / 6;
	grid-column: 1 / 5;
	padding: 20px;
}
	
.sidebarB {
	grid-area: sidebarB;
	/*background-color: goldenrod;*/
	text-align: center;
	font-size: 16px;
	grid-row: 6 / 7;
	grid-column: 1 / 5;
	padding: 20px;
}

.logo {
	grid-area: logo;
	background-color: #FAF8E9;
	text-align: center;
	grid-row: 7 / 8;
	grid-column: 1 / 5;
	padding: none
		px;
}
	
.footer {
    	grid-area: footer;
    	background-color: #FAF8E9;
    	text-align: center;
	font-size: 10px;
	grid-row: 8 / 9;
	grid-column: 1 / 5;
	padding: none;
	}

/* t a b l e t   t a b l e t    t a b l e t*/

@media (min-width: 768px) {

.grid {
	font-family: Garamond;
	font-size: 20px;
	color: #F84108;
	width: auto;
	margin: 30px 30px 30px 30px;
	
	display: grid;
	grid-template-columns:150px auto auto 120px;
	grid-template-rows:50px auto auto auto auto auto;

	justify-content: center;
	grid-gap: 10px;
}	
	
	.nav ul li {
		display: inline-block;
		text-align: center;
		}
	.nav ul {
		text-align: center;
	}

	.contents {
	grid-row: 4 / 5;
	grid-column: 2 / 4;
}

	.sidebarA {
	text-align: left;
	grid-row: 4 / 5;
	grid-column: 1 / 2;
}
	
	.sidebarB {
	text-align: left;
	grid-row: 4 / 5;
	grid-column: 4 / 5;
}

	.logo {
	grid-row: 5 / 6;
}

	.footer {
	grid-row: 6 / 7;
}

}

/* d e s k t o p   d e s k t o p   d e s k t o p  */

@media (min-width: 1024px) {

	.grid {
	font-family: Garamond;
	font-size: 20px;
	color: #F84108;
	width: auto;
	margin: 50px 30px 50px 30px;
	/*height: 1000px;*/
	
	display: grid;
	grid-template-columns:250px auto auto 250px;
	grid-template-rows:50px auto auto auto auto auto;

	justify-content: center;
	/*grid-template-areas:
		". nav nav  ." 
		". title title  ."
		". image image ."	
		"sidebarA contents contents sidebarB"
		". logo logo ."
		". footer footer .";*/
	grid-gap: 10px;
}	
	
}
	

	

	