/* pure static tile background */
body.geocities-vibe {
    background-color: black;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFElEQVQIW2NkYGD4z8DAwMgAI0AMDA4wBgXk8aUAAAAASUVORK5CYII='); 
    color: #00FF00;
    font-family: "Comic Sans MS", "Chalkboard SE", sans-serif;
    margin: 0;
    overflow-x: hidden;
    cursor: crosshair; 
}

a {
    color: yellow;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: red;
    background: yellow;
}

/* 3D pipe at the top of the screen */
.top-pipe {
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, #777, #ccc, #555);
    border-bottom: 5px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.8);
}

.valve {
    width: 50px;
    height: 50px;
    background: red;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    border: 5px solid darkred;
    box-shadow: 2px 2px 5px black;
}

.content {
    margin-top: 80px;
}

.crazy-text {
    color: yellow;
    font-size: 24px;
    font-weight: bold;
    background: blue;
    padding: 10px;
    border: 3px dashed red;
}

.nav-table {
    margin: 20px 0;
    box-shadow: 5px 5px 0px cyan;
}

.blink {
    animation: blinker 0.4s step-start infinite;
    color: magenta;
    text-shadow: 2px 2px 0px white;
    font-size: 3rem;
}

@keyframes blinker {
    50% { opacity: 0; }
}

.gifs img {
    margin: 10px;
}

.about-us {
    background: rgba(0, 0, 255, 0.7);
    border: 8px outset silver;
    padding: 20px;
    width: 60%;
    margin: 30px auto;
    color: white;
    text-align: left;
    font-size: 1.2rem;
}

.contest-box {
    background: yellow;
    color: black;
    border: 10px dashed red;
    padding: 30px;
    width: 50%;
    margin: 30px auto;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.contest-box input[type="submit"] {
    background: red;
    color: white;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    border: 3px solid black;
}

.hit-counter {
    margin-top: 50px;
    font-size: 30px;
    border: 4px solid lime;
    display: inline-block;
    padding: 15px;
    background: black;
    font-family: "Courier New", Courier, monospace;
    color: red;
}

/* The actual water drops generated by JS */
.water-drop {
    position: fixed;
    width: 6px;
    height: 15px;
    background: #00f6ff;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 40px; 
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 0 10px #00f6ff;
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
        opacity: 0.2;
    }
}
