@import url('https://fonts.googleapis.com/css2?family=Amarante&family=Aubrey&display=swap');

html,
body {
    margin: 0;
    min-height: 100%;
    background: #000;
}

body {
    color: white;
}

#page-background {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
}

#cinder-background {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: transparent;
    mix-blend-mode: screen;
}

.site-content {
    position: relative;
    z-index: 2;
}