body
{
background: var(--pagesFond);
--clr: rgb(200,200,200);
--titre: rgb(240,180,40);
}
main
{
position: relative;
max-width: 1024px;
margin: auto;
padding: 5vmin 2em;
color: var(--clr);
text-align: center;
animation: affichage 1s;
}
@keyframes affichage
{
0% {clip-path: polygon(0 0, 0% 0, 0 0%);}
100% {clip-path: polygon(0 0, 200% 0, 0 200%);}
}
main h1
{
width: 80%;
margin-top: 0.2em;
margin-bottom: -1vmin;
margin-left: auto;
margin-right: auto;
color: var(--titre);
text-align: center;
text-shadow: -0.03em 0.03em 0 rgb(120,70,20), 0 0.04em 0 rgb(120,70,20), 0.03em 0.03em 0 rgb(120,70,20), 0 0.07em 0 rgb(120,70,20);
line-height: 0.8em;
transform: rotate(-3.5deg);
}
main p
{
margin: 5vmin 0;
color: var(--clr);
font-size: 0.85em;
text-align: justify;
}
main p:first-letter
{
position: relative;
float: left;
margin-top: 0.15em;
margin-right: 0.1em;
font-family: 'Noto Serif', Serif;
font-size: 2.9em;
font-weight: 400;
}
main p:not(#contact) a
{
position: relative;
margin: -0.5em;
padding: 0.5em;
background-clip: content-box !important;
color: var(--titre);
text-decoration: underline;
}
main p + a
{
display: inline-flex;
margin-bottom: 2em;
padding: 0.5em 0.75em;
flex-wrap: wrap;
justify-content: center;
align-items: center;
border: 1px solid white;
border-radius: 8px;
font-size: 0.8em;
text-transform: uppercase;
}

/* Fb */
#social.gauche + button.social {display: none;}

/* Images */
main #images
{
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: -8px;
}
main #images img
{
height: 128px;
margin: 8px;
clip-path: inset(100% 0 100% 0 round 0 16px 0 16px);
transition: filter 0.25s;
}
main #images img:hover:not(.full)
{
filter: brightness(1.5);
cursor: zoom-in;
}
main #images img.full
{
z-index: 3;
position: fixed;
width: 101%;
height: 101%;
left: 0;
top: 0;
margin: 0;
border: none;
background-color: var(--pagesFond);
background-position: center;
background-repeat: no-repeat;
background-size: contain;
cursor: zoom-out;
}

@media (max-width: 500px) {
main #images img {height: 96px;}
}
@media (max-width: 385px) {
main #images img {height: 70px;}
}

/* Tarifs */
main#tarifs > div
{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
main dl
{
padding: 0.7em;
text-align: center;
}
main dl dt, main dl dd
{
display: block;
}
main dl dt
{
margin-bottom: 0.5em;
line-height: 0.9em;
}
main dl dd
{
padding: 0.75em 0.5em;
border-radius: 0.5em;
background: rgba(200,200,200,0.1);
font-size: 0.8em;
white-space: nowrap;
}
main dl dd span
{
display: inline-block;
vertical-align: top;
padding: 0 0.5em;
line-height: 0.95em;
}
main dl dd em
{
display: block;
font-size: 0.7em;
}
main dl dd a
{
padding: 4px 8px;
border: 1px solid var(--clr);
border-radius: 6px;
}
main dl dd a:hover
{
background: rgb(200,200,200);
color: black;
}

/* Contact */
main hr {margin: 5vmin 0;}
main h2
{
margin-top: -2vmin;
margin-bottom: -3vmin;
color: white;
text-align: center;
transform: scale(0.6);
}
main #contact {text-align: center;}
main #contact a
{
overflow: hidden;
display: inline-block;
position: relative;
margin: 0.25em;
padding: 1em;
background-image: linear-gradient(135deg, white 50%, transparent 50%);
background-repeat: no-repeat;
background-position: 100% 0%;
background-size: 300%;
border: 2px solid white;
border-radius: 0 16px 0 16px;
text-shadow: 0 0 5px var(--pagesFond);
transition: background-position 0.5s, color 0.5s, text-shadow 0.5s;
}
main #contact a:hover
{
background-position: 0% 100%;
color: var(--pagesFond);
text-shadow: 0 0 0px var(--pagesFond);
}
main #contact a i
{
z-index: -1;
position: absolute;
font-style: normal;
transform: scale(3.75) rotate(10deg) translateY(-0.05em);
opacity: 0.5;
}