:root {
    --test-color: rgb(0, 0, 123);
    --test2-color: rgba(5,12,13,1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Righteous", sans-serif;
    font-weight: 400;
    font-style: normal;
}

main {
    color: var(--test-color);
    background-color: rgba(5,12,13,1);
    background-color: var(--test2-color);
    transition: 1s;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 70px);
    grid-template-rows: repeat(auto-fill, 70px);
    width: 100%;
    height: 100dvh;
    position: fixed;
    z-index: -1;
    background-color: var(--test2-color);
}

.scroll {
    z-index: 10000000;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    font-size: 32px;
    color: white;
    opacity: 0;
    transition: opacity .3s;

    animation: scrollAnim .3s .7s forwards linear;
}

@keyframes scrollAnim {
    from{opacity: 0;}
    to{opacity: 1;}
}

body.scrolling .scroll {
    opacity: 0;
}

.grid-item {
    box-shadow: inset 0px 0px 20px var(--test-color);
    opacity: .3;
}

.circle-radient {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 100%;
  background: radial-gradient(circle, rgba(5,12,13,.4) 0%, var(--test2-color) 95%);
  filter: blur(100px);
}

.test {
    position: relative;
    padding-top: 110dvh;
    padding-bottom: 110dvh;
}

.image-gallery {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25dvh;
}

.oue {
    margin-top: 25dvh;
    margin-bottom: 25dvh;
    /* min-height: 100dvh; */
    width: 100%;
    display: grid;
    grid-template-columns: repeat(8,minmax(0,1fr));
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    padding: 20px;
}

.oue img {
    /* transition: mix-blend-mode .3s; */
    /* width: 100%; */
}
.oue img:nth-child(1) {
    grid-column: 2 / 5;
}
.oue img:nth-child(2) {
    grid-column: 5 / 8;
}
.oue img:hover {
    /* mix-blend-mode: difference; */
}

.texts-grid {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100dvh;
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(8,minmax(0,1fr));
    grid-template-rows: 1fr 200px;
    grid-column-gap: 20px;
    padding: 20px;
    pointer-events: none;
}

.text-colors {
    grid-column: 3;
    grid-row: 1;
    font-size: 32px;
    mix-blend-mode: difference;
    white-space: nowrap;
}

.text-colors span:nth-child(1) {
    transition: 1s;
    color: transparent;
}
.text-colors span + span {
    text-transform: uppercase;
}

.text-color {
    font-size: 24px;
}
.text-color--pr {
    grid-column: 2;
    grid-row: 2;
}
.text-color--nd {
    grid-column: 7;
    grid-row: 2;
    text-align: right;
}

.huge {
    position: fixed;
    bottom: 0;
    opacity: 1;
    font-size: 200px;
    pointer-events: none;
    color: rgba(var(--test-color), 0.1);
    opacity: .1;
}