html{
	width: 100vw;
	margin: 0px;
}
body{
	width: 100vw;
	margin: 0px;
	overflow-x: hidden;
	min-width: 560px;
}

.content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#welcome {
	background-image: url("../images/welcome1.jpg");
	background-color: rgba(0,0,0,0.2);
	background-blend-mode: darken;
	background-repeat: no-repeat;
	background-size: cover;
	width: inherit;
	height: 100vh;
}
#welcome .centered {
	margin-top: 5vh;
	width: 50vw;
	text-align: left;
	color: white;
	background-color: rgba(0,0,0,0.5);
	border-bottom: 5px solid white;
	padding-left: 20px;
}

#welcome .quote {
	margin-top: 12%;
	padding-bottom: 4%;
	color: white;

}
.quote h2{
	font-size: 8vmin;
}

.menu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 50vh;
	background-image: url("../images/iconsbackground.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.menu a:hover img{
	width: 90%;
}

.icons {
	margin: 30px;
	border: 3px dotted white;
	background-color: rgba(0,0,0,0.5);
}

.icons figure {
	display: inline-block;
	padding-left: 3vw;
	padding-right: 3vw;
	text-align: center;
}

figure img {
	margin: 0 auto;
}

figcaption {
	color: white;
}

.section {
	width: 100vw;
	background-color: white;
}

.presentation {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: calc(100% - 40px);
	padding: 20px;

}

.profile_pic {
	width: 20vw;
	display: inline-block;
	margin-right: 15px;

}

.profile_pic img {
	width: 100%;
	border-radius: 100vw;
}

.presentation .texte {
	width: 40%;
}


.cours {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

.cours .texte {
	padding-right: 5vw;
	padding-left: 4vw;
	display: inline-block;
	width: 60%;
}
.cours .imgcours {
	display: inline-block;
	margin: 0;
	padding: 0;
	width: 38%;
	height: 100%;
	overflow-y: hidden;
	overflow-x: hidden;
}

.imgcours img {
	height: 100%;
	float: right;
}

@media only screen and (max-width: 600px){
	.cours {
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.cours .texte{
		width: 95vw;
	}
	.texte p {
		min-width: 90%;
	}

	.cours .imgcours{
		height: auto;
		width: 100vw;
	}

	.cours img {
		width: 100%;
		height: auto;
	}
	
	.presentation .texte {
	width: 90%;
	}
}


.doterra {
	min-height: 400px;
	width: 100%;
	background: url(../images/doterra.jpg);
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	background-size: cover;
	background-position: center;
}

.huiles{
	background: linear-gradient(to right,rgba(255,255,255,0.95), rgba(255,255,255,0.8) 60%,rgba(255,255,255,0)),url(../images/huile.jpg);
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	background-size: cover;
	background-position: center;
	
}

.huiles .texte {
	margin-left: 10vw;
	max-width: 600px;
	padding: 50px;
}