html{
	scroll-behavior: smooth;
}

body{
	margin: 0;
	padding 0;
	font-family: "Quicksand", sans-serif;
	background-color: #FFF5F5;
	color: #930000;
}

.header{
	position: fixed;
	top: 0;
	text-align: center;
	width: 100%;
	height: 60px;
	background-color: #FFF5F5;
	z-index: 3;
}

ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.menu li{
	display: inline-block;
	margin: 10px;
	padding: 10px;
	height: 20px;
}

a{
	text-decoration: none;
	color: #930000;
	transition: color 0.5s;
}

.activelink{
	border-bottom: 2px solid #930000;
	transition: border-bottom 0.5s;
}

.activelink:hover{
	border-bottom: 2px solid #000000;
}

a:hover{
	color: #000000;
}

.hamburger{
	position: fixed;
	top: 0;
	right: 0;
	width: 60px;
	height: 35px;
	padding: 12.5px 0;
	display: none;
	cursor: pointer;
}

.hamburger span{
	display: block;
	margin: 7px auto;
	height: 3px;
	width: 25px;
	background-color: #930000;
	border-radius: 1.5px;
}

.maintitle{
	margin: 150px auto 0 auto;
	width: 300px;
	text-align: center;
	font-size: 60px;
	font-weight: 600;
}

.collapsible-menubar{
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #FFF5F5;
	text-align: center;
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 2;
}

.collapsible-menubar.show{
	display: block;
	opacity: 1;
}

.collapsible-menu{
	width: 100%;
	margin-top: 60px;
}

.collapsible-menu li{
	height: 20px;
	text-align: center;
	display: block;
	padding: 40px 0;
}

.footer{
	position: fixed;
	bottom: 0;
	left: 0;
	text-align: center;
	height: 60px;
	width: 100%;
	display: block;
	background-color: #FFF5F5;
	z-index: 2;
}

.footer li{
	display: inline-block;
	margin: 15px 50px;
	height: 30px;
	width: 30px;
}

.footer img{
	height: 30px;
	width: 30px;
}

@media (max-width: 600px){
	.menubar{
		display: none;
	}
	
	.hamburger{
		display: block;
	}

	.footer li{
		margin: 15px 25px;
	}
}

/* SECTIONS */

.section{
	display: block;
}

.section-title{
	width: calc(100% - 100px);
	height: 40px;
	font-size: 36px;
	font-weight: 300;
	border-bottom: 2px solid #930000;
	margin: 0 50px;
	padding: 15px 0;
}

.section-header{
	width: 100%;
	height: 60px;
}

.section-body{
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-text{
	text-align: justify;
	padding: 0 50px;
}

.section-contact{
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
	padding: 20px 50px;
}

.section-contact a{
	text-decoration: underline;
}

@media (max-width: 1000px){
	.section{
		max-width: 600px;
		margin: 0 auto;
	}
	.section-body{
		flex-direction: column;
	}
	.section-photo{
		display: none;
	}
	.section-text{
		margin-top: 30px;
	}
}

@media (min-width: 1000px){
	.section{
		width: 100%;
	}
	.section-title{
		font-size: 48px;
		height: 60px;
	}

	.section-body{
		display: flex;
		align-items: center;
		justify-content: center;
		height: calc(100% - 120px);
	}

	.section-para{
		flex: 1;
	}

	.section-text{
		margin-top: 30px;
	}

	.section-photo{
		flex: 0.8;
		text-align: center;
	}

	.section-photo img{
		width: calc(200px + 30%);
		padding: 50px;
	}
}
