body {
  background: #111 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAIklEQVQIW2NkYGD4z8BQUMwABRgZGTg5OTn/YWRkZODk5AQAggIFBIFqB1EAAAAASUVORK5CYII=);
  font-family: "Comic Sans MS", "Comic Sans", cursive, sans-serif;
  margin: 0;
  padding: 0;
  color: #ffd700;
}

a {
  color: #ffd700;
  font-weight: bold;
  text-decoration: underline;
}
a:visited {
  color: #b8860b;
}
a:hover {
  color: #fff;
}

#container {
  width: 760px;
  margin: 20px auto;
  background: #1a1a1a;
  border: 3px solid #ffd700;
}

#header {
  background: #000;
  color: #ffd700;
  text-align: center;
  padding: 10px;
  border-bottom: 3px solid #ffd700;
}
#header h1 {
  font-size: 48px;
  margin: 0;
  letter-spacing: 4px;
  text-shadow: 3px 3px 0 #666;
}
#header .tagline {
  font-size: 14px;
  color: #ffcc00;
  margin-top: 5px;
}

#nav {
  background: #222;
  text-align: center;
  padding: 8px 0;
  border-bottom: 2px solid #ffd700;
}
#nav a {
  color: #000;
  background: #ffd700;
  padding: 4px 14px;
  margin: 0 3px;
  text-decoration: none;
  font-size: 15px;
  border: 2px outset #ffcc00;
}
#nav a:hover {
  background: #fff;
  border: 2px inset #ffcc00;
}

#content {
  padding: 15px;
  min-height: 400px;
  color: #ddd;
}

#sidebar {
  float: right;
  width: 200px;
  margin: 0 0 10px 15px;
  padding: 10px;
  background: #111;
  border: 2px solid #ffd700;
  font-size: 13px;
  color: #ddd;
}
#sidebar h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #ffd700;
  text-align: center;
  border-bottom: 2px dotted #ffd700;
  padding-bottom: 4px;
}

#footer {
  clear: both;
  background: #000;
  color: #888;
  text-align: center;
  padding: 10px;
  font-size: 11px;
  border-top: 3px solid #ffd700;
}
#footer a {
  color: #ffd700;
}

.welcome {
  font-size: 18px;
  color: #ffd700;
  margin-bottom: 15px;
}

.blink {
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

.steam {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  font-size: 18px;
  opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) scale(0.5); opacity: 0; }
  20% { opacity: 0.4; }
  100% { transform: translateY(-200px) scale(1.5); opacity: 0; }
}

.counter {
  text-align: center;
  font-family: "Courier New", monospace;
  font-size: 16px;
  color: #ffd700;
  background: #000;
  padding: 4px;
  margin: 8px 0;
  letter-spacing: 3px;
}
