@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

.scroll-container {
    width: 100%;
    position: relative;
}

#webgl-canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

canvas {
    display: block;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.header h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.5em;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.section {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 10vh 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 500px;
}

#section-one {
    justify-content: center;
    text-align: left;
}
#section-one h2 {
    font-size: 5rem;
    line-height: 1.1;
}

#section-two {
    align-items: flex-end;
    text-align: right;
}

#section-three {
    align-items: center;
    text-align: center;
}

#section-four {
    align-items: center;
    text-align: center;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Roboto Condensed', sans-serif;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 450px;
}
