:root {
    --bg-color-main: #000;
    --bg-color-secondary: #575757;
    --text-color-main: #ffffff;
    --text-color-secondary: #cfcfcf;
    --spotify-green: #1db954;
    --yt: #ff0000;
}

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: 90vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: 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;
}