* {
	margin: 0;
	padding: 0;
}

html::-webkit-scrollbar {
	display: none;
}

html {
	width: 100%;
	height: 100%;
	background-image: url('images/conceptarttree_nochar.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

#section_logo {
	text-align: center;
	width: 60vw;
	min-width: 350px;
	margin: 0 auto;
	margin-top: 10vh;
}

.charimg {
	position: fixed;
	height: 105%;
	width: auto;
	left: 0;
	bottom: -20px;
	z-index: -1;
	animation: wave 30s ease infinite;
}

@keyframes wave {
	0%,
	100% {
		transform: translateY(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translateY(-20px);
	}
	20%,
	40%,
	60%,
	80% {
		transform: translateY(20px);
	}
}

#section_logo h1 {
	font-family: 'Nunito', sans-serif;
	color: #f0eccc;
	font-size: 2.5vw;
	font-variant: small-caps;
}

.logoimg {
	width: 100%;
	height: auto;
}

#nav {
	text-align: center;
	margin-top: 50px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#nav .btn1,
#nav .btn2,
#nav .btn3 {
	width: 150px;
	height: 100px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Nunito', sans-serif;
	font-size: 20px;
	text-decoration: none;
	color: #e1d9ae;
	margin: 0px 15px;
	font-size: 1.5em;
	font-weight: 500;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

#nav .btn1 {
	background-image: url('images/carre3.png');
}

#nav .btn2 {
	background-image: url('images/carre2.png');
}

#nav .btn3 {
	background-image: url('images/carre.png');
}

#nav .btn1:hover,
#nav .btn2:hover,
#nav .btn3:hover {
	color: white;
}

#footer {
	background-image: linear-gradient(0, rgba(0, 0, 0, 0.788), rgba(0, 0, 0, 0));
	text-align: center;
	position: fixed;
	width: 100%;
	bottom: 0;
	padding: 10px;
}

#footer a {
	padding: 10px;
	color: #f0eccc;
	text-decoration: none;
	font-family: 'Nunito', sans-serif;
}

#footer a:hover {
	color: white;
}

@media only screen and (max-width: 768px) {
	#section_logo h1 {
		font-size: 3.8vw;
	}

	.charimg {
		left: -100px;
		bottom: -20px;
	}
}
