body{
    font-family: Arial, sans-serif;
}

h1,h2,h3,h4{
    font-family: "Bookman Old Style", serif;
}

h1#main{
    text-align:center;
    padding-top: 100px;
    padding-bottom: 0;
    font-size: 2em;
    margin-bottom: 5px;
}

img#entree{
    width: 60%;
    height: 50%;
}

img#hall{
    width: 30%;
    height: 66%;
    position: absolute;
}

img#vestiaire{
    width: 65%;
    height: 65%;
    position: relative;
}

section.descriptif{
    font-size: 1.4em;
    margin-left: 1em;
}

img#salle{
    width: 61%;
    height: 61%;
    position: absolute;
    display: inline-block;
}

img#chausson{
    width: 28%;
    height: 28%;
}

iframe{
    display: block;
    margin: auto;
}

p#video{
    text-align: center;
    font-size: 1.2em;
}

#fleur{
    width: 20%;
    height: 20%;
    display:block;
    margin:auto;
    animation: fleur 10s infinite linear;
}

#fleur:hover{
    animation: fleur 3s infinite linear;
}

@keyframes fleur {
    from{
        transform:rotate(0deg);
    }
    to{
        transform: rotate(1000deg);
    }
}