@font-face {
	font-family: 'Celtic_Hand';
	src: url('fonts/Celtic_Hand.woff2') format('woff2'),
		url('fonts/Celtic_Hand.woff') format('woff'),
		url('fonts/Celtic_Hand.ttf') format('truetype'),
		url('fonts/Celtic_Hand.otf') format('opentype')
}

body{
    margin: 0;
	overflow-x: scroll;
	overflow: scroll;
}

main{
    width: 90%;
    margin: auto;
}

.diapo{
    position: relative;
    overflow: hidden;
}

#nav-droite, #nav-gauche{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: blue;
    font-size: 3em;
}

#nav-droite{
    right: 10px;
}
#nav-gauche{
    left: 10px;
}

.elements{
    display: flex;
    transition: 1s linear;
}

.element{
    flex: 1 0 100%;
    position: relative;
}

.element > img{
    width: 100%;
}

.caption{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(255,255,255,0.4);
    padding: 30px;
}
