/* ------ TOUT EN ORDRE ALPHABÉTIQUE ------ */
*::,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0px;
    overscroll-behavior: none;
}
a, button, div, img, p, span {
    color: black;
    margin: 0px;
    text-decoration: none;
}
a, button, div {
    position: absolute;
}
body {
    background-color: rgb(51, 51, 51);
    background-image: url(texture-001.jpg);
    background-blend-mode: darken;
}
.flat {
    transition-duration: 1s;
    transform-origin: top;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0,0.8,0,1);

}
.flat:hover {
    transform: rotateX(20deg);
}
.flat:focus {
    transform: translateY(-200px);
}
.minus {
    transform: rotateZ(-8deg);
}
.plus {
    transform: rotateZ(8deg);
}

/* EXIT BACK TO INDEX */
.exit {
    top: 2900px;
    left: 700px;
    padding: 1rem;
}
.exit-link {
    color: antiquewhite;
    font-size: 4rem;

    animation: exit-pulse 2s linear infinite;
}
@keyframes exit-pulse {
    50% {scale: 1.2;}
}
/* DÉBUT FRAGMENTS */
.fragment > p {
    color: rgb(255, 255, 255);
    mix-blend-mode: overlay;
}
.latin {
    left: 0px;
    top: 0px;
    width: max-content;
    font-family: 'Jacques Francois Shadow';
    font-size: 4rem;
    text-shadow: 2px -2px 2px rgb(255, 255, 255), -2px 2px 2px rgba(0, 0, 0, 0.582);
    text-transform: uppercase;
}
.definition-alocstase {
    top: 900px;
    left: 3250px;
    width: 300px;
    font-family: "Special Elite";
    font-size: 1.25rem;
    word-break: break-word;
}
.word-entry {
    font-weight: bold;
}
/* FIN FRAGMENTS */

/* DÉBUT LINK CRYPTIC */
.link-cryptic {
    border-radius: 50%;
    box-shadow: inset -4px 4px 16px rgba(0, 0, 0, 0.6);
    height: 150px;
    left: 1300px;
    overflow: clip;
    top: 700px;
    transition: 1s;
    transition-property: box-shadow;
    width: 150px;
}
.link-cryptic:hover {
    box-shadow: inset -4px 4px 32px black;
}
.tv {
    background-color: rgb(235, 235, 235);
    color: rgba(0, 0, 0, 1);
    font-size: 24px;
    letter-spacing: -1px;
    line-height: 20px;
    position: inherit;
    transform-origin: top left;
    z-index: -1;
}
@keyframes tv {
    0% {
        transform: translate(-10px, 150px) rotateZ(-90deg);
    }
    100% {
        transform: translate(-10px, 200px) rotateZ(-90deg);
    }

}
.tv {
    animation-duration: 0.5s;
    animation-iteration-count:infinite;
    animation-name: tv;
    animation-timing-function:linear;
    animation-fill-mode: forwards;
}
/* FIN LINK CRYPTIC */

/* DÉBUT IMAGES */
div.image {
    justify-content: center;
    height: min-content;
    width: max-content;
}
.img {
    height: fit-content;
    position: relative;
    width: fit-content;
    z-index: 0;
}
.img::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5) 90%);
    content:'';
    filter: blur(20px);
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0px;
    transform: translate(8px, 16px);
    width: 100%;
    z-index: -1;
}
.tape-001 {
    background-image: url(tape-001.png);
    background-size: cover;
    height: 50px;
    margin: auto;
    position: relative;
    transform: translateY(50%);
    width: 100px;
    z-index: 1;
}

/* IMG */
.image-001 {
    left: 2200px;
    top: 60px;
}
.image-002 {
    left: 750px;
    top: 1150px;
}
.img-monroe-001 {
    width: 400px;
}
.image-004 {
    left: 1150px;
    top: 150px;
}
.image-004::after {
    background: rgb(56, 22, 0);
    content: '';
    left: 0px;
    height: 270px;
    mix-blend-mode: soft-light;
    position: absolute;
    top: 0px;
    transform: translate(10px, 60px);
    width: 480px;
    z-index: 2;
}
.img-dartmoor {
    border: 10px solid whitesmoke;
    height: 270px;
    width: 480px;
    object-fit: cover;
    object-position: 0px -130px;
}
.image-005 {
    top: 2150px;
    left: 3025px;
}
.img-monroe-002 {
    width: 250px;
}
.image-006 {
    top: 2700px;
    left: 1900px;
}
.img-moloch-001 {
    width: 300px;
    height: 360px;
    object-fit: cover;
    transition: filter 3s linear;
}
.img-moloch-001:hover {
    filter: sepia(1) contrast(2) saturate(2) hue-rotate(135deg) invert(1);
    cursor: help;
}
/* FIN IMAGES */

/* DÉBUT POST-ITS */
.note {
    color: rgba(0, 0, 128, 0.8);
    font-family: 'Rock Salt';
    font-size: 0.8rem;
    line-height: 1rem;
    margin-left: 3rem;
    margin-right: 5rem;
    transform: skew(9deg, 0deg);
}
.post-it {
    align-content: center;
    aspect-ratio: 1/0.6;
    background-image: url(post-it.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    overflow: visible;
    padding-bottom: 5ch;
    width: 350px;
}
.signature {
    margin-top: 1rem;
    text-align: right;
}
/* FIN POST-ITS */