@font-face {
    font-family: Antique;
    src: url(/fonts/Antique-Legacy-Regular.woff2);
}

@keyframes fadeIn{
    from{opacity: 0;}
    to{opacity:1;}
}

:root{
    --gap: 18px;
}

h1, h2, h3, a, p{
    font-family: Antique;
    text-transform: none;  
}

img{
    max-width: 100%;
    
}
body{
    padding-bottom: var(--gap);
}

header{
    position: fixed;
    width: calc(100vw - var(--gap) - var(--gap));
    background-color: white;

    padding-left: var(--gap);
    padding-right: var(--gap);
    padding-top: var(--gap);

    z-index: 2;
}

main{
    padding: 36px var(--gap) 0px var(--gap);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.retour{
    transition: all .3s ease;
}


.retour:hover{
    opacity: 25%;
}

.photoContainer{
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    
}


.image{
    opacity: 0;
    transition: all .3s ease;
    width: 55%;
    cursor: pointer;
}
.image:hover{
    width: 60%;
    
}


.bigPictureContainer{
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.509);
    z-index: 1;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
}

.bigPicture{
    height: 80%;
}

.legende{
    margin-top: 30px;
}
