body{
	background-color: white;
	font-family: nb_international_pro, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
	padding: 30px 0;
	z-index: 10;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
}

.logo img {
	height: 100px;
	margin-left: 10px;
}

nav {
	margin-top: 20px;
	text-align: right;
	margin-right: 300px;
}

nav a{
	display: inline-block;
	color: black;
	padding: 10px 20px;
	text-decoration: none;
	margin: 5px;
	background-color: transparent;
	transition: font-size 0.2s;
	font-weight: bold;
}

nav a:hover {
	font-size: 18px;
	transition: font-size 0.2s;
}

/* Styles for the main.html file */
.main-banner{
	position: relative;
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
	font-size: 48px;
	text-shadow: 2px 2px 0px #111111;
	transition: background-image 1s ease-in-out;
}

.history-banner {
	position: relative;
	width: flex;
	height: 600px;
	background: url(CPR_Photo2.jpg) no-repeat center center / cover;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: white;
	padding: 100px;
}

.history-banner .content {
	/*background-color: rgba(255, 0, 0, 0.8);*/
	padding: 50px;
	max-width: 400px;
	text-align: center;
	/*border: 5px solid #111111;*/
	margin-left: 50px;
	/*text-shadow: 2px 2px 0px #111111;*/
	color: white;
}

.history-banner h1 {
	font-size: 48px;
	margin-bottom: 20px;
	text-shadow: 2px 2px 0px #111111;
}

.history-banner .button {
	display: inline-block;
	background-color: #111111;
	color: #ffffff;
	padding: 10px 20px;
	text-decoration: none;
	font-weight: bold;
	border: 2px solid #c8cccb;
	transition: padding 0.2s;
	transition: font-size 0.2s;
}

.history-banner .button:hover {
	background-color: #32363b;
	padding: 12px 22px;
	transition: padding 0.2s;
	font-size: 18px;
	transition: font-size 0.2s;
}

.projects-banner {
	position: relative;
	width: flex;
	height: 800px;
	background-size: cover;
	background: url(Florida-Memorial-Medical-Food-Service.jpg) no-repeat center center / cover;
	background-repeat: no-repeat;
	text-align: right;
	justify-content: flex-end;
	transition: background-image 1s ease-in-out;
	padding: 80px;
	color: white;
	box-sizing: border-box;
}

.projects-banner .content {
	/*background-color: rgba(255, 0, 0, 0.8);*/
	padding: 50px;
	max-width: 400px;
	text-align: center;
	/*border: 5px solid #111111;*/
	margin-left: auto;
	margin-top: 75px;
	color: white;
}

.projects-banner h1 {
	font-size: 36px;
	margin-bottom: 20px;
	text-shadow: 2px 2px 0px #111111;
}

.projects-banner .button {
    display: inline-block;
    background-color: #111111;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #c8cccb;
	transition: padding 0.2s;
	transition: font-size 0.2s;
}

.projects-banner .button:hover {
    background-color: #32363b;
	padding: 12px 22px;
	transition: padding 0.2s;
	font-size: 18px;
	transition: font-size 0.2s;
}

/* Footer styles for all files */
footer {
	background-color: white;
	padding: 30px;
	text-align: center;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
}

.footer-logo img {
	height: 80px;
	margin-left: 10px;
}

.footer-nav {
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-nav a {
	display: inline-block;
	color: black;
	padding: 10px 20px;
	text-decoration: none;
	margin: 5px;
	background-color: transparent;
	border: transparent;
	transition: font-size 0.2s;
	font-weight: bold;
}

.footer-nav a:hover {
	font-size: 18px;
	transition: font-size 0.2s;
}



.info p {
	text-align: right;
	font-weight: bold;
}

footer p {
	text-align: center;
}

/* Support for mobile devices, avoids the frustrating cut-off screen issue */
@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        margin: 0 auto;
        height: 60px;
    }

    nav {
        text-align: left;
        margin-top: 10px;
        width: 100%;
    }

    nav a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px 0;
        margin: 0;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: column;
    }

    .info p {
        text-align: center;
    }

    .history-banner .content {
        max-width: 100%;
        padding: 10px;
    }
	
	.contact-form {
		max-width: 75%;
	}
}