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;
}

.projects-main {
	position: relative;
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	background: url(AdventHealth_PalmCoast_001_medium.jpg) no-repeat center center / cover;
	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;*/ /* Unclear if we want this to have transitioning photos yet"*/
}

.view-gallery {
	position: relative;
	width: 100%;
	height: 80vh;
	background-size: cover;
	background-repeat: no-repeat;
	background: url(Halifax-Deltona_Reception.jpg) no-repeat center center / cover;
	display: flex;
	justify-content: center;
	align-items: center;
}

.view-gallery .button{
    display: inline-block;
    background-color: #111111;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
	font-size: 30px;
    border: 2px solid #c8cccb;
	transition: padding 0.2s;
	transition: font-size 0.2s;
	align-items: center;
}

.view-gallery .button:hover {
    background-color: #32363b;
	padding: 12px 22px;
	transition: padding 0.2s;
	font-size: 35px;
	transition: font-size 0.2s;
}

.project-list {
	position: relative;
	width: 100%;
	height: 80vh;
	background-size: cover;
	background-repeat: no-repeat;
	background: url(IMG_0674.jpg) no-repeat center center / cover;
	display: flex;
	justify-content: center;
	align-items: center;
}

.project-list .button {
	display: inline-block;
	background-color: #111111;
	color: #ffffff;
	padding: 10px 20px;
	text-decoration: none;
	font-weight: bold;
	font-size: 30px;
	border: 2px solid #c8cccb;
	transition: padding 0.2s;
	transition: font-size 0.2s;
	align-items: center;
}

.project-list .button:hover {
	background-color: #32363b;
	padding: 12px 22px;
	transition: padding 0.2s;
	font-size: 35px;
	transition: font-size 0.2s;
}


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;
    }
	
	.view-gallery .button, .project-list .button {
		font-size: 20px;
		padding: 8px 16px;
	}
	
	.view-gallery .button:hover, .project-list .button:hover {
		font-size: 22px;
		padding: 10px 18px;
	}
	
	.footer-top {
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: column;
    }

    .info p {
        text-align: center;
    }
}