* {box-sizing: border-box;}

body {background-image: url(background.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		color: #ffffff;
		font-family: Arial, Helvetica, sans-serif;}
		
#wrapper {
			background-color: #000000;
			background-repeat: no-repeat;
			border: 4px solid #03f8fc;

}

	
header {background-color:#000000; 
		color: #ffffff;
		text-align: center;
		border-bottom: 4px solid #03f8fc;
		}

h1{margin-bottom: 0;
	margin-top: 0;
	font-family: Georgia, "Times New Roman", serif;
	padding-top: 0.5em;
	padding-bottom: 0.5em;}

main {padding: 1px 20px 20px 30px;
display: block;
overflow: auto;
background-color: #000000;}


footer{font-size: 75%;
background-color: #000000;
	font-style: italic;
	text-align: center;
	font-family: Georgia, "Times New Roman", serif;
	padding: 2em;}
	
form { display: flex; 
         flex-direction: column;
			flex-wrap: no-wrap;}

/* this is for the medium width screen*/
@media (min-width: 600px){
	
	
	section{
		padding-left: 2em;
		padding-right: 2em;
	}
	
	.content main {
		display: grid;
		grid-template-rows: auto;
		grid-template-columns: 1fr 1fr 1fr;
	}
	
	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;
	}
	
}

/*for our large size screens*/
@media (min-width: 1024px){
	
	
	#wrapper{
		margin: auto;
		width: 80%;
		border: 4px solid #03f8fc;
		display: grid;
		grid-template-rows:  auto;
		grid-template-columns: 190px auto;
	}
	
	header{
		border: 0px;
		border-bottom: 4px solid #03f8fc;
		grid-row: 1/2;
		grid-column: 1/3;
	}
	
	div{
		border: 0px;
		grid-row: 2/3;
		grid-column: 1/3;
	}
	
	main{
		border: 0px;
		grid-row: 3/4;
		grid-column: 2/3;
	}
	
	footer{
		grid-row: 4/5;
		grid-column: 1/3;
	}
}