/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*end of CSS reset */
/*CSS reset is for consistancy between browsers*/

/* General CSS / CSS that applies to multiple pages */
body{
	background-color: rgb(231, 219, 203);
	min-height: 100vh;
    display: flex;
    flex-direction: column;
	font-family: Arial, Helvetica, sans-serif;
}

.image{
	width: 100%;
	height: auto;
}

.picture{
	display: flex;
	align-self: center;
	flex-direction: column;
	width: 300px;
	margin: 20px;
	padding: 5px;
	border: 3px rgb(0, 0, 0) solid;
	background-color: rgb(196, 102, 40);
}

.signs{
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: auto;
	height: auto;
}

.top{
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 22px;
	color: aliceblue;
	display: flex;
	flex-direction: column;
	align-self: center;
	text-align: center;
	width: 150px;
    background-color: rgb(196, 102, 40);
	padding: 5px 75px;
	border-radius: 60px;
	margin:15px 5px 5px 5px;
	line-height: 35px;
}

footer{
	margin-top: auto;
	padding-bottom: 5px;
	text-align: center;
	background-color: rgb(196, 82, 40);
	color: aliceblue;
}

.facebook{
	font-size: 35px;
	color: #3D5A8e;
	background-color: aliceblue;
	border-radius: 25px;
}


/* Header CSS */
header{
	display: flex;
	justify-content: space-around;
	background-color: rgb(196, 82, 40);
	color: aliceblue;
	align-items: center;
	padding-bottom: 5px;
}

header h1{
	font-size: 30px;
	font-weight: bolder;
	font-family: Arial, Helvetica, sans-serif;
}

header .icon{
	font-size: 30px;
	color: aliceblue;
}

.logo{
	width: 60px;
}

/*Navigation bar CSS */

#mainMenu{
	display: none;
	background-color: rgb(196, 102, 40);
}

#mainMenu ul{
	width:100%;
}

#mainMenu li{
	font-size: 28px;
	font-family: Arial, Helvetica, sans-serif;
	padding: 5px;
	text-align: center;
}

#mainMenu a{
	text-decoration: none;
}

#mainMenu .page a{
	color: rgb(255, 255, 255);
}

/* Home Page CSS */

.details{
	display: flex;
	line-height: 23px;
	margin: 30px 5px;
	padding: 5px;
}

.details p{
	font-size: 18px;
	font-family: Arial, Helvetica, sans-serif;
}

.details a{
	font-size: 20px;
	font-weight: bold;
}

.people{
	width: auto;
	height: auto;
}

.s1{
	padding: 5px;
}

.s2{
	padding: 5px;
}

.s3{
	padding: 5px;
}

iframe{
	width: 100%;
	height: auto;
}

.map{
	display: flex;
	margin: 25px;
	align-items: center;
	flex-direction: column;
	padding: 5px;
	border: 3px rgb(0, 0, 0) solid;
	background-color: rgb(196, 82, 40);
}

.map p{
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
}

.welcome{
	font-family: Arial, Helvetica, sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
    background-color: rgb(196, 102, 40);
	padding: 10px;
	border-radius: 60px;
	margin:15px 5px 5px 5px;
}

.wingPpl{
	display: flex;
	align-self: center;
	width: 400px;
	height: auto;
	border: 3px rgb(0, 0, 0) solid;
	background-color: rgb(196, 102, 40);
}
.greeting{
	display: flex;
	align-items: center;
}

.welcome h2{
	font-size: 26px;
	font-weight: 600;
}

.welcome p{
	text-align: center;
	font-size: 18px;
}

hr{
	width: 100%;
	padding: 0;
	margin: 0;
	border: 0;
	height: 10px;
	background-color: rgb(196, 82, 40);
	
}

.pRules a{
	font-size: 20px;
	font-weight: bold;
}

.pRules{
	font-family: Arial, Helvetica, sans-serif;
	line-height: 23px;
	margin: 30px 15px;
}

.image-background{
	height: 19em;
	position: relative;
}

.image-background img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: fit-content;

}

.image-background .text{
	position: relative;
	z-index:1;
}

/* Contact Form CSS */

input, textarea{
	width: 320px;
	font-size: 20px;
	font-family: Arial, Helvetica, sans-serif;
}

form p{
	text-align: center;
	width: 320px;
	margin: 10px auto;
}

form span{
	color: red;
}

#address{
	display: none;
}

.submit input{
	background-color: rgb(196, 102, 40);
	color: aliceblue;
}


/* Cooks CSS */

.cook p{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 23px;
	text-align: center;
	padding: 15px;
	margin: 15px;
} 

.cook h2{
	display: flex;
	flex-direction: column;
	align-self: center;
	text-align: center;
	width: 150px;
    background-color: rgb(196, 102, 40);
	padding: 5px 75px;
	border-radius: 60px;
	margin:15px 5px 5px 5px;
	line-height: 25px;
	font-size: 26px;
	font-weight: bolder;
	color: aliceblue;
}

.cook h3{
	font-size: 22px;
	font-weight: bold;
	text-align: center;
}

.cook span{
	font-weight: bolder;
}

.cook ul{
	font-size: 14px;
    margin-left: 25px;
    list-style-type: disc;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
}

.inOne li{
	list-style-type: circle;
}

.inTwo li{
	list-style-type: square;
}

.cook table, th, td {
	border:1px solid black;
	text-align: center;
	font-size: 14px;
}

.cook th{
	font-weight: bolder;
}

.cook table{
	margin-top: 10px;
	width: 100%;
	display: flex;
	align-self: center;
}

/* Site Plan CSS */

.siteHead{
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 22px;
	color: aliceblue;
	display: flex;
	flex-direction: column;
	align-self: center;
	text-align: center;
	width: 115px;
    background-color: rgb(196, 102, 40);
	padding: 5px 75px;
	border-radius: 60px;
	margin:15px 5px 5px 5px;
	line-height: 35px;
}

.sitePlan p{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 23px;
	text-align: center;
	padding: 15px;
	margin: 15px;
}

.plan{
	display: flex;
	width: 350px;
	height: auto;
	align-self: center;
	background-color: rgb(196, 102, 40);
	padding: 5px;
	border: 2px black solid;
	line-height: 35px;
}

.plan img{
	width: 100%;
	height: auto;
}

/* Judging CSS */

#judging ul{
	list-style-type: disc;
}

#judging h2{
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 26px;
	color: aliceblue;
	display: flex;
	flex-direction: column;
	align-self: center;
	text-align: center;
	width: 150px;
    background-color: rgb(196, 102, 40);
	padding: 5px 75px;
	border-radius: 60px;
	margin:15px 5px 5px 5px;
	line-height: 35px;
}

#judging h3{
	font-size: 22px;
	text-align: center;
	font-weight: bold;
}

.catagories ul{
	font-size: 16px;
    margin-left: 10px;
	margin-right: 10px;
	padding: 15px;
    list-style-type: disc;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	display: flex;
	align-items: center;
	flex-direction: column;
	line-height: 40px;
}

#judging h4{
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

.rubric ul{
	font-size: 16px;
    margin-left: 10px;
	margin-right: 10px;
	padding: 15px;
    list-style-type: disc;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	display: flex;
	align-items: center;
	flex-direction: column;
	line-height: 35px;
}

#peopleChoice{
	font-size: 16px;
	text-align: center;
	margin: 30px;
	line-height: 30px;
}

#peopleChoice a{
	font-size: 20px;
	font-weight: bold;
}

#note{
	font-size: 14px;
	text-align: center;
}

/* schedule CSS */

#schedule table, th, td {
	border:1px solid black;
	text-align: center;
}

#schedule th{
	font-weight: bolder;
}

#schedule table{
	margin-top: 15px;
	display: flex;
	align-self: center;
	font-size: 16px;
}

#schedule td{
	padding-left: 5px;
	padding-right: 5px;
}

#schedule h2{
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 26px;
	color: aliceblue;
	display: flex;
	flex-direction: column;
	align-self: center;
	text-align: center;
	width: 150px;
    background-color: rgb(196, 102, 40);
	padding: 5px 75px;
	border-radius: 60px;
	margin:15px 5px 5px 5px;
	line-height: 35px;
}

/* Form Mail CSS */

.thanks{
	width: auto;
}