* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000, #1b1b1b, #000000);
    perspective: 1000px;
    overflow: hidden;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    font-weight: 400;
}

@media (width <= 800px) {
    body {
        overflow: auto;
    }
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 0;
}