body { 
   
  background-image: url(Background03.jpg);
  background-size: cover ;         /* Makes it fill the screen */
  background-repeat: no-repeat;   /* Stops tiling */
  background-position: center;    /* Keeps it centered */
  font-family: 'Courier New', monospace;
  padding: 2rem;
  color: cyan;
  text-align: center ;
  line-height: 2 ;
  margin: 0;
  height: 150vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes wobble {
   0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.content-box {
  background-color: black;
  border-top: 4px solid cyan;
  border-bottom: 4px solid cyan;
  border-left: 4px solid cyan;
  border-right: 4px solid cyan;
  width: 600px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  top: 20px;
}
@keyframes scroll { 
  0% { transform: translateX(0); }
  100% { transform; translateX(-100%); }
}
.image-board {
  width: 100%;
  max-width: 100px;
  height: 100px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  border: 2px solid cyan;
  padding: 10px;
  background-color: black;
  }
  .image-board img { 
    height: 100%;
    margin-right: 10px;
    display: inline-block;
    border-radius: 8px;
  }

a {
  color: #00ffff;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
