body {
    background-color: #f2f2f1;
	margin: 0;
	padding: 0;
	border: 0;
}

header {
	text-align: center;
}

header img {
	margin: 1em;
	width: 75%;
}

img {
	margin: 1em;
	width: 50%
}

.search {
	width: 90%;
	margin: 1em;
}

fieldset {
	margin: 1%;
	padding: 2%;
	background-color: #cf1e11;
	width: 49%;
	border: 5px dashed #313131;
}

h1 {
	font-family: "Bungee", sans-serif;
	color: #cf1e11;
	margin: 1em;
	font-size: 2.25em;
}

h2 {
	font-family: "Patrick Hand", cursive;
	margin: 1em;
	font-size: 2em;
}

h2 a {
	font-family: "Patrick Hand", cursive;
	font-size: 1.5em;
}

p, ul, ol, article h3, label, input, select, legend {
	margin: 1em;
	font-family: "Rubik", sans-serif;
	color: #313131;
	font-weight: normal;
	font-size: 1.5em;
}

label {
	color: #fff;
}

a {
	font-family: "Rubik", sans-serif;
	color: #cf1e11;
}

/* Nav starts here */
nav {
	clear: both;
	font-size: 1em;
	font-size: 1.5em;
}

nav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 1em;
}

nav li {
	text-align: center;
	font-size: 1em;
}

nav a {
	background-color: #cf1e11;
	font-family: "Patrick Hand", cursive;
	display: block;
	padding: 0.5em;
	font-size: 1em;
	color: #ffffff;
	text-decoration: none;
}
/* Nav ends here */

article h2 {
	text-align: center;
	font-family: "Bungee", sans-serif;
	color: #cf1e11;
}

article img {
	display: block;
	margin: 1em auto;
	width: 95%
}

table {
	border-collapse: collapse;
	font-family: "Rubik", sans-serif;
	margin: 1em;
}

tr {
	border-bottom: 5px solid #cf1e11;
}

tr:last-child {
	border-bottom: none;
}

tr:nth-child(even) {
	background-color: #fff;
}

.gallery img {
	display: block;
	margin: 4%;
	width: 92%;
}

.contact  {
 	background-image: url("../images/istock-969077342-2000x1333.1000x0-is.jpg");
	background-size: 100%;
	background-color: #f2f2f1;
}

.contact p, .contact h1 {
	display: inline-block;
	padding: 1%;
	background-color: #f2f2f1;
}

footer {
	background-color: #313131;
	text-align: center;
	font-size: 0.75em;
	padding: 1em;
}

footer p {
	color: #fff;
}

.submit {
	border-radius: 15%;
	font-size: 1.5em;
	width: 30%;
	height: 75px;
}

/* Tablet */
@media screen and (min-width: 481px) {
	header img {
		margin: 1em;
		width: 55%;
	}
	
	article img {
		width: 75%
	}
}
/* Desktop */
@media screen and (min-width: 769px) {
	body {
		max-width: 1800px;
	}
	
	header {
		text-align: center;
	}

	header img {
		margin: 1em;
		width: 25%;
		float: left;
	}
	
	h1 {
		font-family: "Bungee", sans-serif;
		color: #cf1e11;
		margin: 1em;
	}

	h2 {
		font-family: "Patrick Hand", cursive;
		margin: 1em;
	}

	h2 a {
		font-family: "Patrick Hand", cursive;
		font-size: 1em;
	}

	p, ul, ol, article h3 {
		margin: 1em;
		font-family: "Rubik", sans-serif;
		color: #313131;
		font-size: 1em;
		font-weight: normal;
	}

	a {
		font-family: "Rubik", sans-serif;
		color: #cf1e11;
	}
	/* Nav starts here */
	nav {
		clear: both;
	}

	nav ul {
		display: grid;
		grid-template-columns: auto auto auto auto auto auto auto; 
		margin: 0;
		padding: 0;
		list-style-type: none;
	}

	nav li {
		text-align: center;
	}

	nav a {
		background-color: #cf1e11;
		font-family: "Patrick Hand", cursive;
		display: block;
		padding: 0.5em;
		color: #ffffff;
		text-decoration: none;
	}

	nav a:hover {
		background-color: #ffffff;
		color: #cf1e11;
	}

	nav ul li:hover > ul {
		display: block;
		width: inherit;
	}

	nav ul ul {
		display: none;
		position: absolute;
	}

	nav ul ul li {
		width: auto;
	}
	/* Nav ends here */
	
	.three-columns {
		display: grid;
		grid-template-columns: 33% 33% 33%;
	}

	.twothirds-column {
		display: grid;
		grid-template-columns: 67% 33%;
	}

	.onethird-column {
		display: grid;
		grid-template-columns: 33% 67%;
	}

	.two-columns {
		display: grid;
		grid-template-columns: 50% 50%;
	}

	article h2 {
		text-align: center;
		font-family: "Bungee", sans-serif;
		color: #cf1e11;
	}

	article img {
		display: block;
		margin: 1em auto;
		width: 95%
	}
	
	.gallery {
		display: grid;
		margin: 1em;
		grid-template-columns: auto auto;
	}
	
	.gallery img {
		width: 70%;
		margin: 1em auto
	}
	
	.gallery img:hover{
		width: 80%;
	}

	footer {
		background-color: #313131;
		text-align: center;
		font-size: 1em;
		padding: 1em;
	}

	footer p {
		color: #fff;
	}
}