/* --- Intro --- */
aside p {
    font-style: italic;   
    padding-bottom: 5vh;
    font-size: 2vh;
}

aside {
    height: 25vh;  
    margin: auto;
    text-align: center;
    margin-left: 12vw;
    margin-right: 12vw;
    margin-top: 1vh;
    border-bottom: 1px solid #FEB4B4;
    box-shadow: 0px 4px 10px #FF592F;
}

/* --- corps de la page ---*/
main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

/* --- Different lien image --- */
section {
    z-index: 1;
    width: 40vw;
    margin-left: 5vw;
    margin-top: 5vh;
    margin-bottom: 10vh;
}

section a {    
    transition: all 1.5s ease;
}
section img {
    width: 35vw;
    height: 50vh;
    border-radius: 10px;        
    box-shadow: 10px 10px 10px #FE7350;
    transition: 1s ease;
}

section a:hover img {    
    transform: scale(1.2);
}
section a:active, section a:hover {
    opacity: 0.7;
    filter: blur(3px);
}

h3 {
    text-align: center;
    font-size: 150%;
    margin-bottom: -1%;
    font-family: signof;
}