


:root {
    --primary: #121212;
    --secondary: #000000;
    --accent: #ffffff;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 1rem));
    }
}

.scroll {
    animation: scroll 300s linear infinite;
}

.reverse {
    animation-direction: reverse;
}

.noise-overlay {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 1;
    background-image: url("https://assets.website-files.com/61686302a97227a53e9754be/61686913ddfb5f3ae26589de_60faf96692616d7217c80fe9_noise-transparent-intense.png");
    background-position: 50% 0%;
    background-size: 250px 250px;
    background-repeat: repeat;
}

.page {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.border {
    position: fixed;
    top: 0;
    left: 0;
    border: 30px solid var(--primary);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 40px;
}

.heading {
    font-family: 'Arial', sans-serif;
    color: var(--primary);
    font-size: 8vw;
    line-height: 1;
    font-weight: 900;
    text-align: center;
}

.marquee {
    display: flex;
    overflow: hidden;
    width: 175vh;
    margin-bottom: 1rem;
    grid-column-gap: 1rem;
}

.marquee-wrap {
    position: fixed;
    top: -80px;
    transform: rotate(3.5deg);
}

.marquee-content {
    display: flex;
    min-width: 100%;
    justify-content: space-around;
    flex: 0 0 auto;
    grid-column-gap: 1rem;
}

.text-block {
    font-family: 'Arial', sans-serif;
    color: var(--primary);
    font-size: 60px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.body {
    background-color: var(--secondary);
}

.heading-wrap {
    margin-top: 0;
    margin-bottom: 0;
    display: block;
    z-index: 1;
    background: var(--secondary);
    padding: 25px;
}

@media screen and (max-width: 767px) {
    .marquee-image.hide-mobile {
        display: none;
    }
}
