@font-face {
  font-family: Athelas; 
  src: url(Athelas.tcc); 
}

@font-face {
	font-family: Windows;
	src: url(../fonts/LeviWindows.ttf) format('truetype');
}

body {
	background-color: #cac6df; 
	margin: 0;
	padding:0;
	font-family: Athelas;
}



.box {
	width: 100%;
	height: auto;
	margin: auto;
}

.navigation {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	height: 85px;
  	font-weight: 400;
 	font-style: normal;
  	font-size: 25px;
  	list-style: none;
  	gap: 30px;
}

.navigation a {
	color: white;
	text-decoration: none;
}

.navigation a:hover {
	color: #8D89A6;
	text-decoration: none;
}

.navigation img {
	height: 60px;

}

.sectionone{
	width: 700px;
	height: 400px;
	background-color: white;
	border: 2px solid #081f79;
	margin-bottom: 50px;
	margin-top: 20px;
	padding-bottom: 20px;
	position: relative;
 	height: 50%;
  	min-height: 50%;
 	margin-bottom: 150px;
  	z-index: 9999;
  	margin-left: auto;
  	margin-right: auto;

}



.sectiontitle {
    font-size: 100px;
    padding-top: 30px;
    text-align: center;
    text-transform: uppercase;
    font-family: Windows;
    font-weight: 200;
    font-style: normal;
    width: 100%;       
    display: block;     
    margin: 0 auto;    
}

.fullwidthnav{
	position: fixed;
	background-color: #081f79;
	width: 100%;
	height: 85px;
	z-index: 999999;
}

.navbar {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 85px;
	position: relative;
}

.logo {
	position: absolute;
	left: 20px;
}

.hamburger {
	display: none;
	font-size: 40px;
	color: white;
	position: absolute;
	right: 20px;

}

.hamburger:hover {
	color: grey;
	text-decoration: none;
}

.nav-toggle {
	display: none;

}

@media (max-width: 800px) {
	.hamburger {
		display: block;
	}
	.navigation {
		position: absolute;
		top: 85px;
		left: 0;
		width: 100%;
		flex-direction: column;
		background-color: #081f79;
		padding: 20px 0;
		display: none;
		gap: 20px;
	}
	.nav-toggle:checked ~ .navigation {
		display: flex;
	}

	.navigation a {
		font-size: 28px;
	}
}

.space {
	width: 100px;
	height: 80px;
}

.rect {
	width: 60%;
    max-width: 960px;
    min-width: 350px;
    height: auto;
    margin: 30px auto;
    padding: 20px;
    overflow: auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    overflow: auto;
}

.pic {
    display: block;
    margin: 0 auto 20px auto; 
}

.text {
	text-align: center;
	font-size: 20px;
}

 .imagebox {
	width: 30%;
	height: 30%;
	background-color: grey;
	margin: 10px;
}


.gallery {
	width: 900px;
	height: auto;
	display: flex;
	align-content: space-between;
	flex-wrap: wrap;
	margin: auto;
}