:root {
    --header_size: 4.5vmin;
    --text_size: 2.5vmin;
}

* {
    margin: 0;
    padding: 0;
}

.webgl {
    position: fixed;
    top: 0;
    left: 0;
}

body {
    background-color: black;
    width: 100%;
    height: 100vh;
}

.content {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

p {
    font-family: "Rubik", sans-serif;
    font-size: var(--text_size);
}

ul {
    list-style: none;
}

ul li::before {
    content: "• ";
}

#skip ul li::before {
    content: "";
}

ul li {
    font-family: "Rubik", sans-serif;
    font-size: var(--text_size);
}

ul li a {
    text-decoration: none;
    color: #ffffff;
}

.section {
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    height: 100vh;
    position: relative;
    font-family: "Rubik", sans-serif;
    color: #ffffff;
    font-size: var(--header_size);
    padding: 0 5%;
    will-change: transform;
}

/* Title */
.title {
    justify-content: flex-end;
    height: 100vh;
    font-family: "Rubik", sans-serif;
}

.title h1 {
    font-size: 10vmin;
    font-family: "Rubik", sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 100;
    font-style: normal;
}

.title h1 > span {
    font-weight: 900;
    font-style: bold;
}

.title p {
    max-width: 30svw;
    font-size: var(--text_size);
    font-family: "Rubik";
}

/* Article */
article {
    width: 50%;
}

article:nth-child(odd) {
    order: 1;
}

article:nth-child(even) {
    order: 2;
    margin-left: 1%;
}

/* Pictures */
picture {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

picture:nth-child(odd) {
    order: 2;
}

picture:nth-child(even) {
    order: 1;
    margin-right: 1%;
}

img {
    background-size: contain;
    background-repeat: no-repeat;
    max-width: 100%;
    height: auto;
}