body {
	margin: auto 0;
	min-width: 150px;
	font-family: Arial;
	background-image: url(img/bubbles.png);
	background-repeat: repeat;
	background-position: top left;
	background-color: #e6f4ff;
	padding-top: 80px;
	display: flex;
	flex-direction: column;
	margin: 0;
	min-height: calc(100vh - 80px);
}

body {
	display: flex;
	flex-direction: column;
}

main {
	flex: 1;
}

.link {
    color: blue;
    text-decoration: underline;
}

main {
	text-align: center;
}

img {
	width: 50px;
}

@font-face {
	font-family: rain;
	src: url(font/rain.ttf);
}

@font-face {
	font-family: rainy;
	src: url(font/RainyFontBold.otf);
}

a {
	text-decoration: none;
	color: #000;
}

.map-container {
	display: flex;
	flex-direction: column;
	width: 70vw;
	height: 70vh;
	margin: auto;
	padding: 50px 0 50px 0;
}

.map-container iframe {
	flex: 1;
	width: 100%;
	height: 100%;
	border: 3px black solid;
}

/*NAV*/
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	font-family: "Rain";
	display: flex;
	height: 80px;
	width: 100%;
	list-style: none;
	font-size: 1.6rem;
	margin: 0;
	padding: 0;
	align-items: center;
	justify-content: center;
	border-bottom: 2px solid #000;
	background-color: #67c0e0;
	z-index: 9999;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

@media only screen and (max-width: 570px) {
    .navbar {
    	font-size: 1.3rem;
	}
}

li {
	padding: 20px;
	margin: 10px;
}

.push {
	width: 100%;
	text-align: right;
}

.zone {
	display: flex;
}

/*COVER*/
.title {
	font-family: "Rainy";
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 7rem;
	padding: 20px 50px 20px 50px;
	font-weight: bold;
}

.image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cover {
	width: 30rem;
}

.container {
	display: flex;
	align-items: start;
	justify-content: center;
}

@media only screen and (max-width: 1000px) {
    .container {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
}

.logo {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 120px;
}

.logoimg {
	padding-top: 10px;
}

.logotext {
	font-size: 0.6em;
}

.logolink {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

@media only screen and (max-width: 750px) {
	.navitem3, .navitem4 {
		display: none;
	}
}

/*footer*/

footer {
	display: flex;
	height: 200px;
	max-height: 500px;
	background-color: #5687db;
	font-size: 5em;
	align-items: center;
	justify-content: left;
	align-items: center;
	list-style: none;
	margin-top: auto;
	padding: 40px 0;
}

.logo-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0px 20px 0px 40px;
}

.logoimg-footer {
	width: 160px;
}

.logolink-footer {
	margin-left: 100px;
	margin-right: 200px;
}

.logotext-footer {
	font-family: "Rain";
	font-weight: 400;
	font-size: 2rem;
}

.footer-list {
	display: flex;
	list-style: none;
	width: 1vw;
	padding: 0;
}

.footer-list > li {
	display: flex;
	align-items: center;
	flex: 1;
}

.inner-footer-list {
	display: flex;
	flex-direction: column;
	list-style: none;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

.inner-footer-list > li {
	font-size: 15px;
	text-align: center;
	width: 150px;
	padding: 0px;
}

@media only screen and (max-width: 650px) {
	img {
		width: 30px;
	}

	.logotext-footer {
		font-size: 1.5rem;
	}

	.logo {
		list-style: none;
		padding: 0;
		margin: 0;
		width: 80px;
	}

	footer {
		flex-direction: column;
		align-items: center;
		height: auto;
	}

	.logo-footer {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.footer-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 80px auto;
		gap: 20px;
		width: 100%;
		max-width: 500px;
		justify-items: center;
		margin: 0;
	}

	.inner-footer-list > li {
		width: auto;
	}

	.footer-list > li:nth-child(1) {
		grid-column: 1;
		grid-row: 1;
	}

	.footer-list > li:nth-child(2) {
		grid-column: 1;
		grid-row: 2;
	}

	.footer-list > li:nth-child(3) {
		grid-column: 2;
		grid-row: 2;
	}

	.footer-list > li {
		margin: 0;
	}
}