.art {
  border-radius: 100px;
  font-size: 16px;
  padding: 4px;
  width: 95%;
  /* Make width responsive */
  height: 95%;
  margin: 10px auto;
  transition: padding .5s ease-in-out;
  box-sizing: border-box;
}

.art:hover {
  padding: 16px;
}

h1 {
  color: aliceblue;
}

@keyframes change-background-color {
  0% {
    background-color: rgb(156, 38, 38, 0.7);
    color: aliceblue;
  }

  50% {
    background-color: black;
    color: red;
  }

  100% {
    background-color: rgb(156, 38, 38, 0.7);
    color: aliceblue;
  }
}

.matrix {
  position: fixed;
  /* Fix the matrix effect to the background */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* Make sure it's behind all other content */
}

.content {
  position: relative;
  /* Keep your content above the matrix rain */
  z-index: 1;
  /* Ensure content is above the matrix */
  color: #fff;
  /* Text color for visibility */
  text-align: center;
  margin-top: 50px;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  /* Ensure canvas stays in the background */
}

#logo {
  animation: spin-right 7s linear infinite;
  border-radius: 200px;
}

@keyframes spin-right {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


#logo2 {
  animation: spin-left 6s linear infinite;
  border-radius: 200px;

}

@keyframes spin-left {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}