/* GLOBAL PAGE STYLING */
body {
    background: #ffffff;
    font-family: Arial, sans-serif;
    padding: 20px;
    color: #000;
}

/* FIXED POPUP STYLE */
.popup {
    padding: 15px;
    border: 2px solid gold;
    margin: 20px 0;
    box-shadow: 0 0 10px gold;
    border-radius: 10px;
}

/* HEADINGS */
h1, h2, h6 {
    color: #0033cc;
}

/* LINKS */
a {
    color: blue;
    font-weight: bold;
}

/* CANVAS BACKGROUND */
canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-color: transparent;
}
