.Abody {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* background: linear-gradient(135deg, #00f3ff, #ff00e1); */
    animation: colorChange 2s ease-in-out infinite;
}

h2 {
  margin: 0;
  margin-top: 20px;
}


h1 {
  color: rgb(0, 0, 0);
}

.content {
    max-width: 100%;
    display: flex;
    justify-content: center;
}

main, .cenva {
    margin-top: 30px;
    width: 1000px;
    display: flex;
    flex-flow: column;
}

.shimmer {
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(-45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 20%, rgba(255, 255, 255, 0.536) 50%, rgba(255,255,255,0.2) 80%, rgba(255,255,255,0) 100%);
}

.animated-text {
  font-size: 50px;
  font-family: Arial, Helvetica, sans-serif;
  color: blue;
  animation: slide 2s ease-in-out infinite;

}

.content-flex {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
  width: 100%;
}

code {
  padding: 30px;
  color: white;
  border-radius: 10px;
  width: 100%;
  display: flex;
  flex-flow: column;
  background-color: rgb(91, 91, 91);
}

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

@keyframes slide {
  0% {
    color: rgb(94, 94, 255);
    transform: scale(1);
  }

  30% {
    color: yellow;
  }

  50% {
    color: red;
    transform: scale(1.5);
  }

  70% {
    color: green;
  }

  100% {
    color: blue;
    transform: scale(1);
  }
}

@keyframes colorChange {
  0% { background-color: red; }
  25% { background-color: blue; }
  50% { background-color: green; }
  75% { background-color: yellow; }
  100% { background-color: red; }
}
