<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: Cambria, serif;
    color: white;
    text-align: center;
    height: 1200vh; /* 스크롤 길이 */
    background: #000;
}

/* 배경 이미지 */
#bg {
    position: fixed;
    inset: 0;
    background: url("/cho/snow.jpg") no-repeat center center fixed;
    background-size: cover;
    z-index: -3;
}

/* 약간 어둡게 */
#bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

/* 눈 내리는 캔버스 */
#snow {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* 콘텐츠 */
.content {
    position: relative;
    z-index: 10;
}

h1, h2 {
    font-family: "Fleur De Leah", cursive;
    font-weight: 400;
    line-height: 1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.85);
}

h1 {
    font-size: 9vw;
}

h1 span {
    font-size: 20vw;
}

h2 {
    font-size: 13vw;
}

p {
    margin-top: 10px;
    font-size: 2em;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.85);
}

/* 섹션 위치 */
section {
    position: absolute;
    left: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

section:nth-of-type(1) { top: 0; }
section:nth-of-type(2) { top: 100vh; }
section:nth-of-type(3) { top: 220vh; }
section:nth-of-type(4) { top: 360vh; }
section:nth-of-type(5) { top: 520vh; }
section:nth-of-type(6) { top: 700vh; }
section:nth-of-type(7) { top: 900vh; }
</style>