/* ---GLOBAL STYLES--- */

* {
    margin: 0;
    padding: 0;
    font-family: "Space Mono", monospace;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    --green: #B4CC05;
    --dark: #191919;
}

body {
    background: var(--dark);
}

body.noscroll {
    overflow: hidden;
}

img,
svg {
    width: 100%;
    max-width: 100%;
}

a {
    cursor: pointer;
    width: fit-content;
    display: inline-block;
    text-decoration: none;
    transition: .25s;
}

button {
    cursor: pointer;
    transition: .25s;
}

h1,
h2,
h3 {
    font-family: "Unbounded", sans-serif;
    color: white;
    font-size: 3vw;
    line-height: 1;
}

p,
li {
    color: white;
    font-size: 1vw;
    font-weight: 400;
}

ul {
    color: white;
    list-style-position: inside;
}

.absolute_media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 996px) {
    h1,
    h2 {
        font-size: 8vw;
    }
    p,
    li {
        font-size: 3.5vw;
    }
}


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