:root {
    --bg-color-main: #000;
    --bg-color-secondary: #575757;
    --text-color-main: #ffffff;
    --text-color-secondary: #cfcfcf;
    --text-color-third: #c0c0c0;
}

html {
    color-scheme: light dark;
    width: 100%;
}

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

body {
    position: static;
    width: 100%;
    font-family: "Wix Madefor Text", sans-serif;
    z-index: 1;
    background-color: var(--bg-color-main);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

a,
a:hover,
a:visited,
a:active {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

#landing {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
}

#landing #hero {
    width: 100vw;
    overflow: hidden;
    white-space: nowrap;
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

#landing #hero .marquee {
    display: flex;
    width: max-content;
    animation: marquee 10s linear infinite;
}

#landing #hero .marquee span {
    font-family: "Wix Madefor Text", sans-serif;
    font-size: clamp(2rem, 24vw, 90vh);
    font-weight: bold;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
    padding-right: 2vw;
    cursor: default;
    user-select: none;
}

#landingSeparator {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 800px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.backgroundThreeDeeObj {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    position: relative;
    z-index: 20;
    width: 100%;
    padding: 0 calc((100% - 1200px) / 2);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

footer div {
    border-top: 1px solid #ffffff20;
    width: 100%;
    padding: 40px 100px;
    flex-shrink: 0;
}