/*
==========================================================

PremiumZone

Version :
1.0.0

File :
assets/background/background.css

==========================================================
*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    width:100%;

    min-height:100%;

    background:#000;

}

body{

    width:100%;

    min-height:100svh;

    overflow-x:hidden;

    background:#000;

    color:#FFF;

    font-family:

        "JetBrains Mono",

        monospace;

}

#pz-app{

    position:relative;

    width:100%;

    min-height:100svh;

    overflow:hidden;

    background:#000;

}

#pz-background{

    position:fixed;

    inset:0;

    background:#000;

    overflow:hidden;

    z-index:1;

}

#pz-cell-layer,

#pz-node-layer{

    position:absolute;

    inset:0;

    overflow:hidden;

}

#pz-cell-layer{

    z-index:1;

}

#pz-node-layer{

    z-index:2;

}

#pz-content{

    position:relative;

    z-index:10;

    width:100%;

    min-height:100svh;

}