@charset "utf-8";
/* CSS Document */

@import url(stylesheet.css);
body {
	background : #fff;
	font-family: 'matypo',Verdana, Geneva, sans-serif;
}
p {
	font-size:3vw;
	margin:10px;
	text-align:center;
	animation: fadein 8s;
    -moz-animation: fadein 8s; /* Firefox */
    -webkit-animation: fadein 8s; /* Safari et Chrome */
    -o-animation: fadein 8s; /* Opera */
}
img {
	display:block;
	margin:auto;
	width:35%;
	height:auto;}
	
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* sur Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* sur Safari et Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* sur Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}

@media screen and (max-width: 600px) {
p {
	font-size:18px;
}
img {
	width:50%;
	height:auto;
	display:block;
	margin:auto;}
	
}