body
{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main
{
    flex-grow: 1;
}

#headerLogo
{
    width: 100%;
    height: 14vh;
    background-color: rgba(40, 32, 94, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

#placementLogo
{
    padding: 1vh;
    height: 12vh;
}

#placementLogo img
{
    height: inherit;
    /* width: inherit; */
}

#docBackground
{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(249deg, rgba(166,81,247,1) 0%, rgba(127,53,242,1) 25%, rgba(119,50,230,1) 25%, rgba(71,19,213,1) 50%, rgba(88,34,238,1) 50%, rgba(57,33,123,1) 75%, rgb(75, 51, 143) 75%, rgba(32,32,32,1) 100%);
    color:#ffffff;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
/* 
.hidden
{
    opacity: 0;
}
 */
#contentGalerie
{
    width: 97.5vw;
    margin: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 2.5vw;

}


.contentEffect
{
    display: flex;
    flex-flow: row wrap;
    align-items: space-between;
}

/* vos effets */

.contentEffetApercu
{
    position: relative;
    border-bottom: none;
    overflow: hidden;
    width: 30.4vw;
    height: 17.1vw;
    margin-left: 1vw;
    margin-right: 1vw;
    margin-bottom: 2vw;
    background-color: rgba(40, 32, 94, 0.6);
}

.contentEffetApercu:hover .showButton
{
    opacity: 1;
}

#contentAddEffect a
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    transition: opacity .1s ease-out;
    background-color: transparent;
    border: none;
}

#contentAddEffect img
{
    object-fit: cover;
    max-height: 65%;
}


#contentAddEffect:hover a
{
    opacity: 0.8;
}

.showButton
{
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    transition: opacity .1s ease-out;
    position: relative;
}

.showButton::before
{
    content: '';
    display: block;
    position: absolute;
    width: 60%;
    height: 2px;
    border-radius: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
}

.showButton::after
{
    content: '';
    display: block;
    position: absolute;
    width: 2px;
    height: 60%;
    border-radius: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
}



.buttonEffect
{
    border: none;
    width: 50%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: background .1s linear;
}

.buttonEffect img
{
    display: block;
    object-fit: cover;
    max-height: 50%;
    max-width: 40%;
    opacity: 0.5;
    transition: opacity .1s linear;
}

.buttonEffect:hover img
{
    opacity: 1;
}

/* OPTION EFFECT */

.optionEffect
{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform .15s ease-out;
}

.optionEffect ul
{
    width: 90%;

}

.remove_effect
{
    color: #ff4b4b;
    text-decoration: underline;
    cursor: pointer ;
}

.optionEffect button
{
    width: 20%;
    background-color: transparent;
    border: none;
}


/* RENDU */

#blocRendu
{
    display: none;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 15;
}

#rendu
{
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    position: relative;
}

.contentBlockRendu
{
    height: 100%;
    width: 100%;
    position: relative;

}

.deplier_code
{
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    width: 3em;
    height: 3em;
    transform:  translate(-50%, -50%) rotate(-90deg);
}

.deplier_code img
{
    display: block;
    max-width: 90%;
}

@media (hover:none) {
    .showButton
    {
        opacity: 1;
    }
}
