/* This is for the logo */
.logo img{
    display: block;
    margin: auto;
	 max-width: 100%;
    max-height: 100%;
}
.location img{
    display: block;
    margin: auto;
	 max-width: 100%;
    max-height: 100%;
}

/* This is for the background image for the homepage */
		.bg img {
	max-width: 100%;
    max-height: 100%;
		}
/* This is for Navigation Bar */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #0B9446;
	font-size: 20px;
}

li {
    float: left;
}

li:last-child {
    border-right: none;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/*Hover state for active and inactive links*/
li a:hover:not(.active) {
    background-color:#CF1C44;
}

.active {
    background-color: #543136;
	}

/*Style for dropdown links*/
li:hover ul a {
	background: #D8C6B8;
	color: #CF1C44;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
li:hover ul a:hover {
	background:  #CF1C44;
	color: #D8C6B8;
}

/*Hide dropdown links until they are needed*/

 li ul {
 display: none;
	 position: absolute;
}

/*Make dropdown links vertical*/
li ul li {
	display:block;
	float: none;
}

/*Prevent text wrapping*/
li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
ul li a:hover + .dropdown-content, .dropdown-content:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: 'Klinic Slab Bold';
	text-decoration: none;
	color: #fff;
	background:  #0B9446;
	text-align: center;
	padding: 10px 0;
	display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #nav{
    display: block;
}

@media screen and (max-width : 760px){
	/*Make dropdown links appear inline*/
	 ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	ul li, li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
}

/* This is for the header 2*/
h2 {
    color:#CF1C44;
    text-align: center;
	font-size:60px;
	font-family:Goudy Old Style;
}
/* This is for the paragraph*/
p {
    font-family: Goudy Old Style;
    font-size: 20px;
}

/* This is for the form */
form{
	text-align: center;
	 border: 2px solid red;
    border-radius: 5px;
	display: block;
}