body {
    height: 100vh;
    width: 100vw;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #000;
    background-image: url("/assets/img/Dev_BG_01.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: linear-gradient(135deg, #eee, #ccc);*/
    font-family: sans-serif;
    font-weight: 800;
}

section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 300px;
    font-size: 8rem;
    text-align: center;
    line-height: 100%;

}


.isolate {
    isolation: isolate;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
}


@keyframes shimmer {
    from {
        filter: contrast(100%) brightness(60%);
    }

    to {
        filter: contrast(140%) brightness(200%);
    }
}

.noise {
    width: 100%;
    height: 100%;
    padding: 8px;
    background: linear-gradient(180deg, rgba(113 33 33/70%), #bf7233), #712121;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation-duration: 3s;
    animation-name: shimmer;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}


.overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: antiquewhite;*/
    mix-blend-mode: multiply;
}

/* Special case Chrome. mix-blend-mode is treated differently. Works best in Safari! */
@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
    .overlay {
        opacity: 0.6;
    }
}