/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: #00ff99;
  font-family: 'Courier New', monospace;
  text-align: center;
  background-image: url('your-weird-background.gif');
  background-repeat: repeat;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 3rem;
  text-shadow: 0 0 5px #ff00ff;
}

.under-construction {
  font-size: 1.2rem;
  margin-top: 2em;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* 🔽 Add this block anywhere below the rest */
ul {
  list-style-position: inside;
  display: inline-block;
  text-align: left;
  margin: 1em auto;
  padding: 0;
} 

.skull-column {
  position: fixed;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  pointer-events: none; /* lets user click through them */
  z-index: 1000;
}

.skull-column.left {
  left: 0;
  padding-left: 8px;
}

.skull-column.right {
  right: 0;
  padding-right: 8px;
}

 .skull {
  width: 48px;
  display: block;
  margin: 8px auto;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

  
  
  
