/* ================= PAGE ================= */

html {
	height: 2700px; /* set page height */
}

.background {
	position: fixed; /* background attachment */
    top: 0; /* top */
    left: 0; /* left */
    width: 100vw; /* full width */
    height: 100vh; /* full height */
    z-index: -1; /* background layer */
    transform: scale(1.0); /* full scale */
    &:after {
        content: ""; /* no text */
        display: block; /* block display */
        position: absolute; /* absolute position */
        top: 0; /* top */
        left: 0; /* left */
        width: 100%; /* full width */
        height: 100%; /* full height */
        background-image: url("../assets/wallpaper.jpg"); /* background image */
        background-position: center; /* centerd image */
        background-size: cover; /* full cover size */
        background-repeat: no-repeat; /* no repeat */
    }
}