body {background-color: #000000;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;}
		
#wrapper {background-color: #000000;
		background-image: linear-gradient(to bottom, #ffffff, #ffcc00);
		background-repeat: no-repeat;}

#logo {height: 150px;
			background-image: url(logo.png);
			background-size: 100% 100%;
			background-repeat: no-repeat;}
			

main {background-color: #ffffff;
	padding: 1px  20px  20px  30px;
	display: block;
	overflow: auto;}


h2 {color: #1976d2;
	font-family: Georgia, "Times New Roman", or serif;
	text-shadow: 3px 3px 3px #cccccc;}



		
form {display: flex;
	flex-direction: column;
	flex-wrap: nowrap;}

input, textarea {margin-bottom: .5em;}


		
@media (min-width: 600px) {
	
	
	
				  
	h2         {grid-row: 1/2; grid-column: 1/5;}

	section    {grid-row: 2/3; grid-column: auto;}

	#special   {grid-row: auto; grid-column: 1/5;}

	footer     {grid-row: auto; grid-column: 1/5;}
	
	form {display: grid;
	grid-gap: 1em;
	grid-template-columns: 6em 1fr;
    grid-template-rows: auto;
	width: 60%}
	
	input[type="submit"] {grid-column: 2/3;
							width: 9em}
	
}

@media (min-width: 1024px) {
	

	
	#wrapper {margin: auto;
				width: 80%;
				border: 1px solid #000033;
				box-shadow: 3px 3px 3px #333333;
				display: grid;
				grid-template-rows: auto;
				grid-template-columns: 190px auto;}
				
				
	header {grid-row: 1/2; grid-column: 1/3;}
	
	
	div {grid-row: 2/3; grid-column: 2/3;}
	
	main {grid-row: 3/4; grid-column: 2/3;}
	
	footer {grid-row: 4/5; grid-column: 2/3;}
	
}