#presentation_main
{
	width : 100%;
	margin : 0px; 
	padding : 0px;
	display : flex;
	align-items : center;
	justify-content : center;
}

#presentation
{
	width : 80%;
	margin : 0px; 
	padding : 0px;
	display : flex;
	flex-direction : column;
	justify-content : center;
}

#presentation_title
{
	background-color : rgb(96, 96, 255);
	margin : 0px; 
	padding : 0px;
	width : 100%;
}

#presentation_title h1
{
	margin : 0px; 
	padding : 0px;
	width : calc(100% - 20px);
	color : white;
	font-size : 1.2em;
	padding-left : 10px; 
	padding-right : 10px;
}

#presentation_text
{
	width : calc(100% - 2px);
	margin : 0px; 
	padding : 0px;
	border : 1px solid rgb(96, 96, 255);
}

#presentation_text p
{
	width : calc(100% - 20px);
	margin : 0px; 
	padding : 0px; 
	text-align : center;
	padding : 10px;
}

#presentation_gallery
{
	width : 100%;
	margin : 0px; 
	padding : 0px;
	display : flex; 
	align-items : center;
	justify-content : center;
	margin-top : 20px;
}

#gallery
{
	width : 100%;
	min-width : 800px;
	height : 400px; 
	margin : 0px; 
	padding : 0px; 
	background-color : #FFFFFF;
	display : flex;
	align-items : center;
	justify-content : center;
}

#slider {
    width: 80%;
    max-width: 1000px;
    overflow:hidden;
    height:400px;
}
#slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    padding: 0;
    font-size: 0;
    left: 0;
    text-align: left;
    animation: 30s slidy infinite;
}
#slider figure img {
    width: 20%;
    height: auto;
    float: left;
}
@keyframes slidy{
    0% {left: 0%;}
    20%{left: 0%;}
    25%{left: -100%;}
    45%{left: -100%;}
    50%{left: -200%;}
    70%{left: -200%;}
    75%{left: -300%;}
    95%{left: -300%;}
    100%{left: -400%;}
}