@import"https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Inter:wght@300;400;500&display=swap";

:root {
    --bg-color: #121212;
    --text-main: #e0e0e0;
    --accent: #d4a373;
    --font-serif: "Cormorant Garamond", serif;
    --font-sans: "Inter", sans-serif
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

#root {
    width: 100vw;
    height: 100vh;
    position: relative
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: var(--bg-color)
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
    background: #555
}

.canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: all
}

body {
    height: 400vh
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    pointer-events: none
}

section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem;
    pointer-events: auto
}

@media(max-width:768px) {
    section {
        padding: 2rem;
        align-items: center;
        text-align: center
    }
}