
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background: black;
    color: #ffb6ff;
    font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
    text-align: center;
    cursor: url(https://cur.cursors-4u.net/nature/nat-11/nat1033.gif), auto !important;
}

subheading {
    font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
    font-size:35px;
    text-shadow: 0 0 10px yellow;
}

h1 {
    margin-top: 40px;
    font-size: 3em;
    text-shadow: 0 0 10px hotpink;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.intro-text { 
    color: #bdffb6;
    font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
    text-align: left;
    margin: 10px;
}

a {
    color: #7df9ff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: hotpink;
    text-shadow: 0 0 5px white;
}

.blink {
    animation: blink 1s steps(1) infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.pee {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

/* Full-screen sparkles behind everything */
#sparkle-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;          
  pointer-events: none;  
}
html, body {
  height: 100%;
  justify-content: center;
}
body {
  margin: 0;
  padding: 40px;
}

html {
  overflow:   scroll;
  font-size: 110%;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}

.top-cont { 
    justify-content: center;
    display: flex;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px; 
    gap: 20px;
    align-items: stretch;
}

.flex-container {
    justify-content: center;
    display: flex;
    padding: 20px;
    width: 100%;
    gap: 20px;
    align-items: stretch;
}

.rowstuffs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.box {
    margin: 20px;
    border: 3px dashed hotpink;
    background: rgba(0,0,0,0.6);
}

.introduction-box {
    flex: 0 0 25%;
    min-width: 0;
    height: max-content;
    border: 3px dashed rgb(90, 240, 15);
    background: rgba(0,0,0,0.6);
}

.guestbox {
    flex: 0 0 100%;
    margin: 20px;
    min-width:0;
    height: max-content;
    justify-content: center;
    border: 3px dashed yellow;
    background: rgba(0,0,0,0.6);
}

.item-class {
    flex: 0 0 60%;
    min-width: 0;
}

.subitem-class {
    flex: 0 0 20%;
    min-width: 0;
}

@media (max-width: 786px) {
    .flex-container {
        flex-direction: column;
    }

    .item-class, .introduction-box {
        flex: 1 1 auto;
        width: auto;
    }
}

.box, .introduction-box, .guestbox {
    margin: 0;
    padding: 20px;
}

.y2k-player{
  margin: 30px auto;
  padding: 14px 16px;
  border: 2px dashed #ffb6ff;
  background: rgba(0,0,0,.45);
  box-shadow: 0 0 18px rgba(255,105,180,.25);
  color: #ffb6ff;
  font-family: "Comic Sans MS","Trebuchet MS",sans-serif;
  text-align: center;
}

.y2k-player .btn{
  background: rgba(255,182,255,.15);
  border: 2px solid #ffb6ff;
  color: #ffb6ff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  text-shadow: 0 0 8px hotpink;
}

.y2k-player input[type="range"]{
  width: 100%;
  accent-color: #ffb6ff; /* modern browsers */
}

.y2k-player .bar{ margin: 12px 0; }
.y2k-player .time{ font-size: 0.9rem; opacity: .9; }
.y2k-player .vol{ margin-top: 10px; }


#visualizer {
    display: flex;
    border: 3px dashed greenyellow;
    padding: 14px 16px;
    margin: 30px auto;
    align-items: flex-end;
    width: 80%;
}

#canvas{
  display:block;
  margin: 20px auto;
  background: rgba(0,0,0,.55);
  border: 2px solid #b6ffb6;
  border-radius: 12px;
  box-shadow: 0 0 18px rgb(3, 137, 26);
}

.sparkle {
    position: fixed; /* Position relative to the viewport */
    pointer-events: none; /* Allows clicks to pass through the sparkle elements to the body */
    width: 10px;
    height: 10px;
    background-color: white; /* Default color */
    border-radius: 50%; /* Make them circular */
    animation: sparkle-animation 0.8s forwards; /* Apply animation and keep the final state (hidden) */
    opacity: 0;
}

@keyframes sparkle-animation {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--random-x), var(--random-y)) scale(0); /* Use CSS variables for random movement */
    }
}