body {
  background-image: url('scary/background.gif');
  background-size: 99;
  background-repeat: repeat;
  background-position: center;

  color: black;
  font-weight: bold;
  text-align: center;

  font-family: Arial, sans-serif;

  margin: 0;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
  
  background-color: black;
  color: white;

margin: 0;
      font-family: sans-serif;
    
}

img {
      max-width: 100%;
      height: auto;
      margin-top: 20px;
    }

.content {
  background-color: rgba(0, 0, 0, 1);
  padding: 20px;
  border-radius: 15px;
}

a {
  color: white;
}

.sidebox {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 20px;
}

.sidebox {
  display: flex;
  flex-direction: column;
}

.sidebox img {
  width: 200px;
}
.animated-rainbow {
  animation: rainbow-shift 3s infinite;
  font-size: 2rem;
  font-weight: bold;
}

.rainbow {
    font-size: 3.5rem;
    font-family: helvetica;
    background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red, violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px white;
    animation: scroll2 1s linear infinite;
}

@keyframes scroll2 {
    0% {
        background-position: 0px
    }

    100% {
        background-position: 1000px
    }
}


@keyframes rainbow-shift {
  0% { color: #ff0000; }
  20% { color: #ff8000; }
  40% { color: #ffff00; }
  60% { color: #00ff00; }
  80% { color: #0000ff; }
  100% { color: #8000ff; }
}