/* 1. Shift everything to make room for the sidebar */
#allrecords {
  margin-left: 520px;
  box-sizing: border-box;
}

/* 1. Home hellochen text animation */
.blurLoop {
  animation: blurFade 3s ease-in-out infinite;
}

@keyframes blurFade {
  0% {
    filter: blur(0px);
    opacity: 1;
  }
  25% {
    filter: blur(5px);
    opacity: 0.5;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

