html{

    scroll-behavior:smooth;

}

body{

    margin:0;

    min-height:100vh;

    overflow-x:hidden;

    background:#020B16;

    color:var(--text);

    font-family:Arial, Helvetica, sans-serif;

    position:relative;

}

#background{

    position:fixed;

    inset:0;

    z-index:0;

}

#app{

    position:relative;

    z-index:1;

    opacity:1;

    transition:opacity .45s ease;

}

#app.page-hidden{

    opacity:0;

}