body {
  margin: 0;
  background: navy;
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 18px 18px;
  color: yellow;
  font-family: "Comic Sans MS", "Times New Roman", serif;
  text-align: center;
}

.page {
  width: 760px;
  margin: 20px auto;
  background: purple;
  border: 6px ridge lime;
  padding: 16px;
}

h1 {
  color: cyan;
  font-size: 42px;
  text-shadow: 3px 3px red;
}

.blink {
  animation: blink 0.7s steps(2, start) infinite;
  color: red;
  font-size: 32px;
  font-weight: bold;
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}

marquee {
  background: black;
  color: lime;
  border: 3px solid yellow;
  padding: 6px;
  font-size: 22px;
}

.construction {
  background: yellow;
  color: black;
  border: 4px dashed red;
  padding: 12px;
  margin: 20px 0;
  font-size: 24px;
  font-weight: bold;
}

.construction-gif {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border: 2px solid black;
}
.nav a {
  display: inline-block;
  background: silver;
  color: blue;
  border: 4px outset white;
  padding: 8px 12px;
  margin: 5px;
  font-weight: bold;
}

hr {
  border: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    red,
    red 20px,
    yellow 20px,
    yellow 40px
  );
}

.flash-player,
.mp3-player {
  margin: 20px auto;
  background: silver;
  border: 4px outset white;
  color: black;
}

.flash-player {
  width: 354px;
  font-family: Arial, sans-serif;
}

::selection {
  background: lime;
  color: black;
}
.flash-titlebar,
.mp3-titlebar {
  background: navy;
  color: white;
  padding: 5px;
  font-weight: bold;
  text-align: left;
  font-size: 13px;
}

.flash-screen {
  background: black;
  padding: 10px;
  border: 3px inset gray;
}

.flash-screen iframe {
  display: block;
  width: 320px;
  height: 240px;
}

.flash-controls,
.player-buttons {
  padding: 6px;
  font-size: 12px;
  text-align: left;
}

button {
  border: 3px outset white;
  background: silver;
  font-weight: bold;
  margin: 3px;
}

.mp3-player {
  width: 420px;
  font-family: Tahoma, Arial, sans-serif;
}

.mp3-body {
  padding: 10px;
  background: #d4d0c8;
}

.playlist {
  background: black;
  color: lime;
  font-family: "Courier New", monospace;
  font-size: 14px;
  text-align: left;
  padding: 8px;
  border: 2px inset gray;
  margin-bottom: 10px;
  line-height: 1.6;
}

.playlist a {
  color: lime;
  text-decoration: none;
}

.playlist a:hover {
  background: navy;
  color: white;
}

.counter-box {
  display: inline-block;
  background: black;
  border: 4px inset gray;
  padding: 6px 10px;
  color: lime;
  font-family: "Courier New", monospace;
  font-size: 20px;
  letter-spacing: 2px;
}

.footer {
  font-size: 14px;
  color: white;
}

#youtube-player {
  width: 320px;
  height: 240px;
}