body {
    /* background-color: black;
    color: white;
    /* line-height: 1.5;*/
    /*    margin: 1rem;*/
    /*  max-width: 3840px;
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-timing-function: ease-in;*/
}


/*header {
  border-bottom: 1px solid white;
  margin-bottom: 1rem;
}*/

/*footer {
  border-top: 1px solid white;
  margin-top: 1rem;
}*/

a {
  color: white;
  text-decoration: none;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*:root * {
    /* Pause the animation */
    animation-play-state: paused;
    /* Bind the animation to scroll */
    animation-delay: calc(var(--scroll) * -1s);
    /* These last 2 properites clean up overshoot weirdness */
    animation-iteration-count: 1;
    /*animation-fill-mode: both;*/ 
