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

.grid {
    	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
		font-weight: 200;
    	font-size: 20px;
    	color: #ffffff;
    	display: grid;
		width: auto;
    	grid-template-columns: auto auto auto auto;
		justify-content: center;
		align-content: center;
    	grid-gap-top: 20px;
		grid-gap-bottom: 20px;
}

/*.grid */.subitems {
		display: grid;
		justify-content: center;
		grid-gap: 10px;
		grid-template-columns: repeat(2, 200px);
		grid-template-rows: repeat(14, 275px)	
}

	.grid .subitems div {
		margin: auto;	
	}

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

.nav ul {
	list-style: none;
}

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

.nav a, ul.nav a:visited {
	padding: 5px 0 5px 0;
	display: block;
	text-decoration: none;
	color: green;	
}

.nav a:hover, ul.nav a:active, ul.nav a:focus {
	background: #6F7D94;
	color: #ffffff;
}

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

.image {
	grid-area: image;
	text-align: center;
	grid-row: 3 / 4;
	grid-column: 1 / 5;
	padding:10px;
}

.contents {
    grid-area: contents;
    text-align: justify;
    color: #000000;
    grid-row: 4 / 5;
    grid-column: 1 / 5;
    padding: 10px;
}

.logo {
	grid-area: logo;
	text-align: center;
	grid-row: 5 / 6;
	grid-column: 1 / 5;
	/*padding: 20px;*/
}
	
.footer {
    	grid-area: footer;
    	text-align: center;
	font-size: 10px;
	grid-row: 6 / 7;
	grid-column: 1 / 5;
	padding: 20px;
	}

/* 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: Arial;
	font-size: 20px;
	color: #ffffff;*/
	width: auto;
	margin: 0;
	
	display: grid;
	grid-template-columns:auto auto auto auto;
	justify-content: center;
	grid-gap: 10px;
}

		/*.grid*/ .subitems {
		display: grid;
		justify-content: center;
		grid-template-columns: repeat(3, 250px);
		grid-template-rows: repeat(10, 275px);
		grid-gap: 20px;
	}
	
	.nav  {
		grid-column: 1 / 5;
		}

	.nav ul li {
		display: inline-block;
		text-align: center;
		}
	.nav ul {
		text-align: center;
	}
}

/* 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: Arial;
	font-size: 20px;*/
	color: #ffffff;
	margin: 0;
	
	display: grid;
	grid-template-columns:auto auto auto auto;
	grid-gap: 10px;
}

	.grid .subitems {
		display: grid;
		grid-template-columns: repeat(4, 250px);
		grid-template-rows: repeat(7, 275px);
			justify-content: center;
		grid-gap: 10px;
		}
}