body {
display: flex;
flex-direction: column;
margin: 0;
}

#headerBox {
display: flex;
width: 100%;
height: 15vh;
}
        
#navigationBox {
display: flex;
align-items: center;
width: 100%;
height: 100%;
background-color: #F0F8FF;
}
        
.navigationButtons {
display: flex;
width: 5%;
height: 50%;
margin: 0px 10px;
}
        
.navigationLinks {
display: flex;
justify-content: center;
align-items: center;
font-family: "Arial";
font-weight: bold;
text-decoration: none;
background-color: #F0F8FF;
color: #87b6b8;
width: 100%;
height: 100%;
}

#contentBox {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 84vh;
background-color: white;
}

#foreground {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 85%;
    background-color: #F0F8FF;
}
        
.imageBox {
display: flex;
height: 80%;
width: 25%;
margin: 0px 30px;
border: 10px solid white;
}
        
.imageBoxImages {
width: 100%;
height: 100%;
}
        
footer {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 15vh;
background-color: #87b6b8;
color: white;
}

/* ----------------- Projects -------------------- */

.projectButtonLink {
    display: flex;
    width: 20%;
    height: 10%;
    margin: 0 20px;
    background-color: #87b6b8;
    color: white;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    }

/* ----------------- Studio -------------------- */

#studioContentContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.videoContainers {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 70vh;
    margin: 50px 0;
}
/* ----------------- About -------------------- */

#contentBackground {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 24px;
    color: #87b6b8;
    width: 50%;
    height: 60%;
    background-color: #F0F8FF;
    border: 15px solid white;
    outline: 30px solid #87b6b8;
}



/* ----------------- Contact -------------------- */

#contactBodyContainer {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 84vh;
	background-color: #F0F8FF;
}

#contactForm {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 60%;
	height: 95%;
}

.contactFormLabels {
    color: #87b6b8;
    font-size: 22px;
}

.contactInputs {
	border-radius: 8px;
	border: 4px solid #87b6b8;
	width: 100%;
	height: 30px;
	font-size: 22px;
	color: #87b6b8;
	margin: 10px 0;
}

#messageBox {
	height: 200px;
	width: 100%;
	resize: none;
	font-size: 16px;
	color: #87b6b8;
	
}

#messageSubmitButton {
	margin-top: 15px;
	font-size: 30px;
	color: #FFFFFF;
	background-color: #87b6b8;
	border-radius: 8px;
}

/* ----------------- Register -------------------- */

#registrationBodyContainer {
	display: flex;
	height: 550px;
	margin: 15px;
}

#registrationForm {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 50%;
	margin: auto;
}

.registrationFormLabels {
    color: #5c5c8a;
    font-size: 22px;
}

.registrationInputs {
	border-radius: 8px;
	border: 4px solid #5c5c8a;
	height: 30px;
	font-size: 22px;
	color: #5c5c8a;
	margin: 10px 0;
}


#registrationSubmitButton {
	margin-top: 15px;
	font-size: 30px;
	color: #FFFFFF;
	background-color: #5c5c8a;
	border-radius: 8px;
}