:root {
    --primary-color: #2C52E5;
    --secondary-color: #001E90;
    --grid-color: rgba(44, 82, 229, 0.15);
    --background-color: #E4E9FF;
    --black: #000000;
    --white: #FFFFFF;
    --warning-color: #FFCC00;
}

* {
    cursor: none !important;
}

body {
    background-color: var(--background-color);
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    overflow-x: scroll;
    overflow-y: hidden;
    transition: ease 1s;
    width: 100vw;
    height: 100vh;
}

body.up {
    background-size: 37px 37px;
}

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    pointer-events: none;
    transition: transform 0.3s ease-out;
    z-index: 1000;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor::before,
.cursor::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 4px;
    transform: translate(-50%, -50%) scale(1);
    background-color: #B8971A;
}

.cursor::after {
    width: 4px;
    height: 100%;
}

.cursor::before,
.cursor::after {
    transition: .3s ease;
}

.cursor.hover,
.cursor.hover {
    transform: translate(-50%, -50%) scale(0.4) rotate(90deg);
}

main {
    display: flex;
    flex-direction: row;
    width: fit-content;
    height: 100vh;
    padding-right: 25px;
}

h1 {
    font-family: Outfit, sans-serif;
    font-size: 6rem;
    font-weight: bold;
    word-wrap: break-word;
    line-height: 5rem;
    color: var(--primary-color);
    width: min-content;
}

h2 {
    font-family: Outfit, sans-serif;
    font-size: 6rem;
    line-height: 5rem;
    font-weight: bold;
    color: var(--black);
    text-wrap: nowrap;
}

h3 {
    font-family: Outfit, sans-serif;
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
}

h4 {
    font-family: Outfit, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 300;
    color: var(--white);
    text-transform: uppercase;
}

p {
    font-family: Outfit, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    color: var(--white);
}

a {
    font-family: Outfit, sans-serif;
    font-size: 1rem;
    color: var(--white);
    background-color: var(--primary-color);
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 14px;
    gap: 5px;
    cursor: pointer;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 0 25px 65px;
    z-index: 999;
    transform: translateY(-100%);
    transition: .8s ease;
}

header .heading.links {
    padding-left: 0;
    transition: .3s ease;
}

header .heading.links .dashed-wrapper {
    opacity: 0.5;
    transition: .3s ease;
}

header .heading.links .dashed-wrapper:hover {
    opacity: 1;
}

.titles-scroller {
    position: fixed;
    left: 0;
    top: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    width: 100vh;
    height: 40px;
    rotate: -90deg;
    transform-origin: top left;
    z-index: 999;
}

.scroller-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    width: fit-content;
    animation: move-titles 25s linear infinite;
    animation-direction: reverse;
}

.titles-scroller p {
    position: relative;
    text-wrap: nowrap;
    opacity: 0.5;
    margin-left: 55px;
    cursor: vertical-text;
}

.titles-scroller p:first-child {
    margin-left: 0;
}

.titles-scroller p::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin: 0 30px;
    width: 25px;
    height: 1px;
    background-color: var(--white);
}

@keyframes move-titles {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 40px));
    }
}

.heading-links-grp {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 50px 0 0 100px;
    transition: .8s ease;
}

.heading-links-grp.up {
    transform: translate(-500px, -500px);
    scale: .75;
}

.heading.links {
    display: flex;
    position: relative;
    gap: 50px;
    padding-left: 25px;
}

.heading.links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s ease;
    overflow: hidden;
    z-index: 10;
}

.dashed-wrapper {
    position: relative;
}

.heading.links .dashed-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -8px;
    height: 160%;
    background-image:
        linear-gradient(to bottom, var(--primary-color) 50%, transparent 50%),
        linear-gradient(to bottom, var(--primary-color) 50%, transparent 50%);
    background-size: 3px 18px, 3px 18px;
    background-position: 0 0, 100% 0;
    background-repeat: repeat-y;
    z-index: -1;
    pointer-events: none;
}

.heading.links .dashed-wrapper::after {
    content: "";
    position: absolute;
    left: -16px;
    top: 0;
    bottom: 0;
    width: 125%;
    pointer-events: none;
    background-image:
        linear-gradient(to right, var(--primary-color) 50%, transparent 50%),
        linear-gradient(to right, var(--primary-color) 50%, transparent 50%);
    background-repeat: repeat-x;
    background-size: 18px 3px, 18px 3px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    z-index: -1;
    pointer-events: none;
}

.heading.links a:hover:not(#back-btn-header) {
    transform: rotateX(10deg) rotateY(-10deg) translate(7px, -7px);
    scale: 1.05;
}

.heading.links .dashed-wrapper:hover::before {
    animation: move-dash-vertical 0.5s linear infinite;
    opacity: 0.5;
}

.heading.links .dashed-wrapper:hover::after {
    animation: move-dash-horizontal 0.5s linear infinite;
    opacity: 0.5;
}

@keyframes move-dash-horizontal {
    from {
        background-position: 0 0, 0 100%;
    }

    to {
        background-position: 18px 0, 18px 100%;
    }
}

@keyframes move-dash-vertical {
    from {
        background-position: 0 0, 100% 0;
    }

    to {
        background-position: 0 18px, 100% 18px;
    }
}

.heading.links a:hover svg {
    transition: .3s ease;
    transform: translate(30px, -30px);
}

.heading.links a svg:nth-child(2) {
    position: absolute;
    right: 14px;
    transform: translate(-30px, 30px);
}

.heading.links a:hover svg:nth-child(2) {
    transform: translate(0, 0);
}

.projects {
    display: flex;
    flex-direction: row;
    gap: 80px;
    margin-top: 50px;
    margin-left: -200px;
    transition: .8s ease;
}

.projects.up {
    transform: translate(-370px, -370px);
}

.project {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background-color: var(--primary-color);
    color: var(--white);
    height: fit-content;
    width: min-content;
    will-change: transform;
    position: relative;
    transition: .3s ease;
}

/* Kleine = langzamer / “verder weg” */
.project[data-depth="0.8"] {
    scale: 0.9;
}

/* Medium */
.project[data-depth="1.2"] {
    scale: 1;
}

/* Groot = sneller / “dichterbij” */
.project[data-depth="1.6"] {
    scale: 1.1;
}

.projects.up .project[data-depth="0.8"] {
    scale: 0.8;
}

.projects.up .project[data-depth="1.2"] {
    scale: 0.9;
}

.projects.up .project[data-depth="1.6"] {
    scale: 0.85;
}

.project.one {
    margin-top: 380px;
}

.projects.up .project.one {
    margin-top: 55vh;
}

.project.two {
    margin-top: 220px;
}

.projects.up .project.two {
    margin-top: 65vh;
}

.project.three {
    margin-top: 320px;
}

.projects.up .project.three {
    margin-top: 55vh;
}

.project img {
    height: 45vh;
    max-height: 500px;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.project .txt-grp {
    display: flex;
    flex-direction: column;
    max-width: 65%;
}

.project .txt-grp h4 {
    margin-bottom: 10px;
}

.project .txt-btn-grp {
    display: flex;
    gap: 25px;
    justify-content: space-between;
}

.project .txt-btn-grp a {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 140px;
    min-height: 158px;
    height: auto;
    background: var(--secondary-color);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.30);
    padding: 0;
    overflow: hidden;
    transition: .3s ease;
}

.project .txt-btn-grp a:hover {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.30);
    scale: .95;
}

.project .txt-btn-grp a:hover svg {
    transform: translate(100px, -100px);
    transition: .3s ease;
}

.project .txt-btn-grp a svg:nth-child(2) {
    position: absolute;
    transform: translate(-100px, 100px);
}

.project .txt-btn-grp a:hover svg:nth-child(2) {
    transform: translate(0, 0);
}

.project::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -48px;
    height: 128%;
    background-image:
        linear-gradient(to bottom, var(--primary-color) 50%, transparent 50%),
        linear-gradient(to bottom, var(--primary-color) 50%, transparent 50%);
    background-size: 3px 18px, 3px 18px;
    background-position: 0 0, 100% 0;
    background-repeat: repeat-y;
    z-index: -1;
    pointer-events: none;
}

.project::after {
    content: "";
    position: absolute;
    left: -30px;
    bottom: 0;
    top: 0;
    width: 120%;
    background-image:
        linear-gradient(to right, var(--primary-color) 50%, transparent 50%),
        linear-gradient(to right, var(--primary-color) 50%, transparent 50%);
    background-size: 18px 3px, 18px 3px;
    background-position: 0 0, 0 100%;
    background-repeat: repeat-x;
    z-index: -1;
    pointer-events: none;
}

.project:hover::before {
    animation: move-dash-vertical 0.5s linear infinite;
}

.project:hover::after {
    animation: move-dash-horizontal 0.5s linear infinite;
}

.about-me {
    scroll-snap-align: center;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 50vh;
    transform: translateY(-50%);
    gap: 100px;
    height: min-content;
    width: min-content;
    overflow-x: visible;
    padding-right: 100px;
    transition: .8s ease;
}

.about-me.up {
    transform: translatey(-180%);
}

.about-me h3 {
    color: var(--primary-color);
    font-size: 6rem;
    line-height: 5rem;
    font-weight: bold;
    width: 495px;
    margin-bottom: 10px;
}

.about-me p {
    color: var(--primary-color);
    margin-bottom: 50px;
}

.about-me .left {
    width: min-content;
}

#study-toolbox-grp {
    display: flex;
    justify-content: space-between;
}

.study {
    display: flex;
    position: relative;
    flex-direction: column;
    background-image: repeating-linear-gradient(-45deg,
            var(--grid-color),
            var(--grid-color) 1px,
            transparent 1px,
            transparent 6px);
    background-repeat: repeat;
    padding: 10px;
    width: fit-content;
    border: 1px solid var(--primary-color);
}

.study::before {
    content: "";
    position: absolute;
    left: -30px;
    top: -1px;
    bottom: -1px;
    width: 120%;
    background-image:
        linear-gradient(to right, var(--primary-color) 50%, transparent 50%),
        linear-gradient(to right, var(--primary-color) 50%, transparent 50%);
    background-size: 18px 1px, 18px 1px;
    background-position: 0 0, 0 100%;
    background-repeat: repeat-x;
    z-index: -1;
}

.study::after {
    content: "";
    position: absolute;
    left: -1px;
    top: -25px;
    right: -1px;
    height: 138%;
    background-image:
        linear-gradient(to bottom, var(--primary-color) 50%, transparent 50%),
        linear-gradient(to bottom, var(--primary-color) 50%, transparent 50%);
    background-size: 1px 18px, 1px 18px;
    background-position: 0 0, 100% 0;
    background-repeat: repeat-y;
    z-index: -1;
}

.study:hover::before {
    animation: move-dash-horizontal 0.5s linear infinite;
}

.study:hover::after {
    animation: move-dash-vertical 0.5s linear infinite;
}

.study #heading-logo-grp {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 10px;
    width: fit-content;
}

#study-toolbox-grp h4 {
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 2rem;
    font-weight: bold;
    width: fit-content;
}

.study p {
    max-width: 155px;
    margin-bottom: 25px;
}

.study h5 {
    font-family: Outfit, sans-serif;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1rem;
    width: fit-content;
    margin-bottom: 5px;
}

.study img {
    width: 24px;
}

.study .progress {
    display: flex;
    flex-direction: row;
    width: fit-content;
    gap: 10px;
}

.study .progress .year {
    width: 25px;
    height: 25px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.75rem;
    font-family: Outfit, sans-serif;
    opacity: 0.3;
}

.study .progress .year.active {
    opacity: 1;
}

.my-toolbox {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.my-toolbox h4 {
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 2rem;
    font-weight: bold;
}

.toolbox {
    position: relative;
    display: flex;
    gap: 10px;
    width: fit-content;
    padding: 10px;
    stroke: var(--primary-color);
}

.toolbox::before {
    content: "";
    position: absolute;
    inset: -4px;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(to right, var(--primary-color) 50%, transparent 50%),
        linear-gradient(to bottom, var(--primary-color) 50%, transparent 50%),
        linear-gradient(to right, var(--primary-color) 50%, transparent 50%),
        linear-gradient(to bottom, var(--primary-color) 50%, transparent 50%);
    background-size:
        15px 1px,
        1px 15px,
        15px 1px,
        1px 15px;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-position:
        0 0,
        100% 0,
        0 100%,
        0 0;
}

.toolbox:hover::before {
    animation: toolbox-border-dash 1s linear infinite;
}

@keyframes toolbox-border-dash {
    to {
        background-position:
            -15px 0,
            100% -15px,
            15px 100%,
            0 15px;
    }
}

.toolbox img {
    height: 30px;
    transition: .3s ease;
}

.toolbox:hover img {
    scale: .9;
    opacity: .7;
}

.toolbox img:hover {
    scale: 1.1;
    opacity: 1;
}

/* .about-me img.right {
    height: 80vh;
    width: auto;
} */
.about-me .right {
    height: 100vh;
    width: 300px;
}

.about-me .right canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.line {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 10vh;
    right: 0;
    height: fit-content;
}

.line .first {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 20vh;
    background-image:
        linear-gradient(to bottom, var(--primary-color) 50%, transparent 50%);
    background-size: 2px 18px;
    background-position: 0 0, 0 100%;
    background-repeat: repeat-y;
}

.line .second {
    position: absolute;
    top: 20vh;
    left: 0;
    height: 55vh;
    width: 0;
    border: 1px solid var(--primary-color);
}

.contact .line {
    right: 50px;
    bottom: -10vh;
    top: auto;
}

.contact .line .first {
    bottom: 0;
    top: auto;
}

.contact .line .second {
    bottom: 20vh;
    top: auto;
}

.line .second::after {
    content: "SCROLL DOWN - FOR CONTACT";
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(60%, -780%) rotate(90deg);
    font-family: Outfit, sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 400;
    width: max-content;
}

.contact .line .second::after {
    content: "SCROLL UP - FOR ABOUT ME";
    transform: translate(60%, 680%) rotate(90deg);
    bottom: auto;
    top: 0;
}

@media (max-height: 600px) {
    .about-me .left {
        display: flex;
        gap: 50px;
    }

    #study-toolbox-grp {
        flex-direction: column;
        gap: 50px;
    }

    #section-scroll-container {
        padding-right: 50px;
    }
}

.contact {
    position: relative;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    margin-top: 50vh;
    transform: translateY(-50%);
    height: fit-content;
    width: min-content;
    overflow-x: visible;
    gap: 150px;
}

.contact h3 {
    color: var(--primary-color);
    font-size: 6rem;
    line-height: 5rem;
    font-weight: bold;
    margin-bottom: 10px;
    width: max-content;
}

.contact form {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: auto;
}

.contact form #message,
.contact form button {
    grid-column: span 2;
}

.contact form input,
.contact form textarea {
    padding: 15px 20px;
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    font-family: Outfit, sans-serif;
    font-size: 1rem;
    background-color: transparent;
    transition: .3s ease;
}

.contact form input::placeholder,
.contact form textarea::placeholder {
    color: var(--primary-color);
    font-family: Outfit, sans-serif;
    font-size: 1rem;
    opacity: 0.5;
}

.contact form input:focus,
.contact form textarea:focus {
    outline: none;
    background-color: var(--primary-color);
    color: var(--white);
}

.contact form input:focus::placeholder,
.contact form textarea:focus::placeholder {
    color: var(--white);
}

.contact form button {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    gap: 5px;
    border: none;
    cursor: pointer;
    font-family: Outfit, sans-serif;
    font-size: 1rem;
    transition: .3s ease;
}

.contact form button:hover {
    gap: 10px;
}

.contact form::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 60px;
    width: 120%;
    background-image:
        linear-gradient(to right, var(--primary-color) 50%, transparent 50%),
        linear-gradient(to right, var(--primary-color) 50%, transparent 50%);
    background-size: 18px 3px, 18px 3px;
    background-position: 0 0, 0 100%;
    background-repeat: repeat-x;
    pointer-events: none;
}

.contact form::after {
    content: "";
    position: absolute;
    left: 0;
    top: -25px;
    right: 0;
    height: 138%;
    background-image:
        linear-gradient(to bottom, var(--primary-color) 50%, transparent 50%),
        linear-gradient(to bottom, var(--primary-color) 50%, transparent 50%);
    background-size: 3px 18px, 3px 18px;
    background-position: 0 0, 100% 0;
    background-repeat: repeat-y;
    pointer-events: none;
}

.contact form:hover::before {
    animation: move-dash-horizontal 0.5s linear infinite;
}

.contact form:hover::after {
    animation: move-dash-vertical 0.5s linear infinite;
}

.contact form .conformation-message {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(-45deg,
            var(--grid-color),
            var(--grid-color) 1px,
            transparent 1px,
            transparent 6px);
    background-repeat: repeat;
    background-color: var(--background-color);
}

.contact form .conformation-message .circle {
    background-color: var(--primary-color);
    border-radius: 50px;
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.contact form .conformation-message h4 {
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact form .conformation-message p {
    color: var(--primary-color);
}

.contact form .conformation-message svg {
    scale: 0;
}

.contact form .conformation-message.visible {
    opacity: 1;
}

.contact form .conformation-message.visible svg {
    animation: checkmarkAnimation 0.5s linear(0, 0.402 7.4%, 0.711 15.3%, 0.929 23.7%, 1.008 28.2%, 1.067 33%, 1.099 36.9%, 1.12 41%, 1.13 45.4%, 1.13 50.1%, 1.111 58.5%, 1.019 83.2%, 1.004 91.3%, 1) 0.3s forwards;
}

.captcha-wrapper {
    position: relative;
    padding: 15px 15px 10px 15px;
    background-image: repeating-linear-gradient(-45deg,
            var(--grid-color),
            var(--grid-color) 1px,
            transparent 1px,
            transparent 6px);
    border: 3px solid var(--primary-color);
    overflow: hidden;
    grid-column: span 2;
    width: auto;
}

.captcha-header {
    margin-bottom: 8px;
}

.captcha-header h5 {
    font-family: Outfit, sans-serif;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.captcha-header p {
    font-size: 0.85rem;
    line-height: 1.1rem;
    color: var(--primary-color);
    opacity: 0.7;
}

.captcha-wrapper .h-captcha {
    display: flex;
    justify-content: flex-start;
}

.captcha-wrapper:hover::before {
    animation: move-dash-horizontal 0.5s linear infinite;
}

.captcha-wrapper:hover::after {
    animation: move-dash-vertical 0.5s linear infinite;
}

/* @media (max-height: 600px) {
    .contact {
        gap: 50px;
    }
    .contact form {
        width: max-content;
        grid-template-columns: auto;
        grid-template-areas:
            "first last captcha"
            "email company captcha"
            "message message captcha"
            "button button button";
    }
    .contact form::before {
        left: -15px;
        width: 105%;
    }

    .contact form #first-name {
        grid-area: first;
    }

    .contact form #last-name {
        grid-area: last;
    }

    .contact form #email {
        grid-area: email;
    }

    .contact form #company {
        grid-area: company;
    }

    .contact form #message {
        grid-area: message;
    }

    .contact form button {
        grid-area: button;
    }

    .contact form .captcha-wrapper {
        grid-area: captcha;
        width: fit-content;
    }
} */

@keyframes checkmarkAnimation {
    from {
        scale: 0;
    }

    to {
        scale: 1;
    }
}

.contact .right .profile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    width: max-content;
}

.contact .right .profile h4 {
    color: var(--black);
}

.contact .right .profile img {
    width: 50px;
    height: 50px;
}

.contact .right .platforms {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 385px;
}

.contact .right .platforms a {
    display: flex;
    align-items: center;
    padding: 0;
    background-color: transparent;
}

.contact .right .platforms .svg-container {
    width: 200px;
    height: 50px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.contact .right .platforms a p {
    text-transform: none;
    color: var(--primary-color);
    opacity: 0;
    transition: .3s ease;
}

.contact .right .platforms a:hover .svg-container {
    width: 50px;
}

.contact .right .platforms a:hover p {
    opacity: 1;
}

#section-scroll-container {
    margin-left: -800px;
    padding-left: 600px;
    height: 100vh;
    width: min-content;
    overflow-y: scroll;
    overflow-x: visible;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

#section-scroll-container::-webkit-scrollbar {
    display: none;
}

.minimum-width-warning {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--background-color);
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 55px 55px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transform: translateY(-100%);
    transition: transform 0.5s ease-out;
    transform-origin: top;
    overflow: hidden;
    box-shadow: #2C52E5 0 0 15px 0;
}

.minimum-width-warning h3,
.minimum-width-warning p {
    text-align: center;
    max-width: clamp(300px, 80vw, 600px);
    color: var(--primary-color);
}

.minimum-width-warning .tape {
    width: 200vw;
    height: 20px;
    position: absolute;
    background-image: repeating-linear-gradient(-45deg,
            var(--warning-color),
            var(--warning-color) 6px,
            var(--black) 2px,
            var(--black) 12px);
    background-repeat: repeat;
    animation: tapeAnimation 1s linear infinite;
}

.minimum-width-warning .tape.one {
    top: 0;
    left: -50%;
    transform: rotate(30deg);
}

.minimum-width-warning .tape.two {
    top: 90%;
    left: -50%;
    transform: rotate(-8deg);
}

.minimum-width-warning .tape.three {
    top: 70%;
    left: -10%;
    transform: rotate(110deg);
}

.minimum-width-warning .tape.four {
    top: 50%;
    left: -100%;
    transform: rotate(-80deg);
}

.minimum-width-warning h4 {
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 25px;
}

.minimum-width-warning .socials {
    display: flex;
    gap: 10px;
}

.minimum-width-warning .socials .svg-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    transition: all .3s ease;
}

.minimum-width-warning .socials .svg-container svg {
    transition: all .3s ease;
}

.minimum-width-warning .socials .svg-container:hover {
    transform: rotate(90deg) scale(0.8);
}

.minimum-width-warning .socials .svg-container:hover svg {
    transform: rotate(-90deg);
}

@media (max-width: 1185px) {
    .minimum-width-warning {
        transform: translateY(0);
    }

    main {
        overflow: hidden;
    }
}

@media (pointer: coarse) and (hover: none) {
    .custom-cursor {
        display: none;
    }
}