body {
  background-image: url('https://diegoswf.neocities.org/Malachite%20zig%20zags.jpg');
  background-repeat: repeat;
  background-size: 120px 120px; /* Smaller tile size */
  background-color: #000;       /* Fallback background */
  color: #00FF00;
  font-family: 'Comic Sans MS', cursive;
  margin: 0;
}



.header img {
  display: block;
  width: 60%;
  max-width: 600px;
  margin: 20px auto;
  border: none;
}

.container {
  display: flex;
  max-width: 1000px;
  margin: auto;
}

.sidebar {
  background-color: #013220;
  width: 200px;
  padding: 10px;
  border-right: 3px dashed #2E8B57;
}

.content {
  background-color: #0B3D0B;
  flex-grow: 1;
  padding: 20px;
  border-left: 5px groove #3CB371;
}

h1, h3 {
  color: #ADFF2F;
  text-shadow: 2px 2px #000;
  text-align: center;
  text-transform: uppercase;
}

a {
  color: #00FA9A;
  font-weight: bold;
  text-decoration: none;
}
a:hover {
  color: #7FFF00;
  text-decoration: underline;
}

.marquee-text {
  background-color: black;
  color: #00FF00;
  padding: 10px;
  font-size: 20px;
  animation: scroll-left 12s linear infinite;
  white-space: nowrap;
  overflow: hidden;
}

@keyframes scroll-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.blink {
  animation: blink 1s steps(1, start) infinite;
  color: #9ACD32;
  text-align: center;
}

@keyframes blink {
  0% { visibility: hidden; }
  50% { visibility: visible; }
  100% { visibility: hidden; }
}

img {
  display: block;
  margin: 10px auto;
  border: 3px ridge #32CD32;
  padding: 5px;
}

.video-library {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  background: transparent;
  padding: 20px;
}

.video-library h2 {
  width: 100%;
  text-align: center;
  color: #ADFF2F;
  font-family: 'Comic Sans MS', cursive;
  margin-bottom: 20px;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}





