
html {
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-y: auto;
    font-family: 'Press Start 2P';
    font-size: 18px;
}
body {
    background-color: #000000;
    color: #a8f0a5;
    width: 800px;
    margin: auto;
    height: 100%;
    background-color: black;
}

main {
    border: 1px solid cyan;
    padding: 20px;
    height: 70%;
    overflow-y: auto;
    font-size: 14px;
    background-color: black;
}

::-webkit-scrollbar{
  width:12px;
}

::-webkit-scrollbar-track{
  background:black;
  outline:1px solid #0ff;
  box-sizing:border-box;
}

::-webkit-scrollbar-thumb{
  background:#0ff;
  border-radius:6px;
  border:2px solid black;

}

::-webkit-scrollbar-thumb:hover{
  background:#f0f;
}

a {
    color: #ff00ff;
    text-decoration: underline;
}
h1, h2 {
    color: #00ffff;
    padding-bottom: 2px;
}

.warning {
    color: #ff5555;
    font-weight: bold;
}
.note {
    color: #ffff00;
    font-style: italic;
}
.bounce-marquee {
  animation: colorpulse 8s infinite alternate;
  font-size: 64px;
  padding: 25px 0px;
}
h1 {
  margin: 0px;
}
/* Color pulse for bouncing */
@keyframes colorpulse {
  0%   { color: #00ffff; text-shadow: 0 0 2.5px #00ffff, 0 0 5px #00ffff;}
  25%  { color: #ff00ff; text-shadow: 0 0 2.5px #ff00ff, 0 0 5px #ff00ff;}
  50%  { color: #ffff00; text-shadow: 0 0 2.5px #ffff00, 0 0 5px #ffff00;}
  75%  { color: #ff5555; text-shadow: 0 0 2.5px #ff5555, 0 0 5px #ff5555;}
  100% { color: #00ff88; text-shadow: 0 0 2.5px #00ff88, 0 0 5px #00ff88;}
}

.bounce-marquee:hover {
  animation-duration: 1s;
  color: red;
  cursor: default;
}


pre {
    background-color: #111;
    padding: 10px;
    border-left: 3px solid #00ffff;
    overflow-x: auto;
}
nav {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-around;
    font-size: 16px;
    background-color: black;
}
nav a {
    border: 1px solid cyan;
    width: 100%;
    text-align: center;
    padding: 10px;
}

nav a:hover {
    background-color: #ff00ff;
    color: #00ffff;
    border-color: #ff00ff;
}
nav a.active {
    background-color: #ff00ff;
    color: #00ffff;
    border-color: #ff00ff;
}

.raindrop {
    position: fixed;
    top: -10px;
    width: 2px;
    height: 2px;
    background-color: rgba(0, 255, 255, 0.8);
    border-radius: 50%;
    animation: fall linear infinite;
    z-index: -1;
}

@keyframes fall {
    to {
        transform: translateY(110vh);
    }
}
