.wraper{
    width: calc(100vw - (2*var(--generalMargin)));
    min-height: 50vh;
    max-height: 90vh;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-top: var(--threadWidth) solid var(--mainColor);
    display: flex;
    justify-content: center;
    overflow: hidden;

    font-size: var(--wraperFontSize);
}

.nom-typo{
    color: var(--mainColor);
    position: absolute;
    top: .3vw;
    left: .3vw;
}
.auteur-date-typo{
    color: var(--mainColor);
    position: absolute;
    bottom: .3vw;
    left: .3vw;
}
.telecharger-typo{
    position: absolute;
    top: .3vw;
    right: .3vw;
    text-align: end;
}
.telecharger-typo a{
    text-decoration: none;
    color: black;
}
.telecharger-typo a:hover{
    text-decoration: underline;
    cursor: copy;
}
.boutons-typo{

    z-index: 10;
    color: var(--mainColor);
    position: absolute;
    bottom: .3vw;
    right: .3vw;
    text-align: end;
}
.texte-typo{
    width: 90%;
    
    word-break: break-all;

    padding-top: 5vh;
    padding-bottom: 5vh;


    min-height: 40vh;
    max-height: 90vh;
    
    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    line-height: 1;
    /* font-size: 10vw; */
}
.texte-typo:hover{
    cursor: text;
}
.date-typo{
    margin-right: 3vw;
}
.plus-bouton:hover{
    color: black;
    cursor: zoom-in;
}
.moins-bouton:hover{
    color: black;
    cursor: zoom-out;
}
.informations-bouton:hover{
    color: black;
    cursor: help;
}
.jeu-de-caractere-bouton:hover{
    color: black;
    cursor: context-menu;
}

.blur-informations{
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2vw;
    text-align: center;
    backdrop-filter: blur(30px);
    transition: .2s;
    opacity: 0%;
}
[contenteditable]:focus {
    border: none;
    outline: none;
}
.wraper:last-of-type{
    margin-bottom: 5vw;
    border-bottom: var(--threadWidth) solid var(--mainColor);
}

.toDisplay{
    opacity: 0%;;
    transition: .2s;
}
.wraper:hover > .toDisplay{
    opacity: 100%;
}


  