* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html,
body {

    width: 100%;
    height: 100%;
    overflow: hidden;

    font-family: Segoe UI, sans-serif;
    background: #060914;

}

.desktop {

    width: 100vw;
    height: 100vh;

    background-image: url("../assets/wallpaper/wallpaper-night.png");

    background-size: cover;
    background-position: center;

    position: relative;
    isolation: isolate;

}

.desktop::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 8, 18, .12), rgba(5, 8, 18, .36)),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .12), transparent 24%);
    pointer-events: none;
    z-index: 0;
}
