@charset "utf-8";

:root {

}
* { padding: 0 ;
    margin: 0 ;
    box-sizing: border-box ;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}
header { height: 100vh ; }
.top { width: 100% ; height: 50px ; background-color: black}
.mTop { width: 100% ;  background-color: rgba(0, 0, 0, 0)  ; height: 100vh}
.fullText {
    width: 800px;            /* ou toute largeur définie */
    overflow-wrap: break-word; /* casse les mots trop longs */
    word-break: break-word;    /* alternative pour plus de compatibilité */
    hyphens: auto;             /* optionnel : ajoute des césures */
}
.fullText p {
    font-size: clamp(1rem, 10vw, 10rem);
}
h1 { font-size: clamp(1rem, 10vw, 5rem);  font-family: Teko , sans-serif; }