body, html {
    margin: 0;
    overflow: hidden;
    height: 100vh;
    background: radial-gradient(circle, #333, #111);
    position: relative;
    font-family: 'Arial', sans-serif;
}

#quotes-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0066ff, #ff00cc);
    z-index: 1;
}

.high-tech-text {
    font-size: 2em;
    color: #fff;
    text-shadow: 0 0 10px #0f0;
    z-index: 2;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
