@font-face {
  font-family: 'Garamondt';
  src: url('fonts/Garamondt-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  /* Example gradient from pink to purple */
  background: linear-gradient( #f6ff00, #ffffff, #f6ff00); 
  /* Optional: make it fill the whole viewport */
  min-height: 100vh;
  margin: 0;
  padding: 0;
}


.credits p {
  font-family: 'Garamondt';
  margin: 20pt 0;
  font-size: 60pt;              
  text-align: center;
  color: white;                  
  -webkit-text-stroke: 3px black;
  text-shadow: 0 0px 10px rgb(255, 0, 174);        
}


.credits-container {
  position: relative;
  width: 100%;
  height: 100vh;        /* Full viewport height */
  overflow: hidden;     /* Hide anything outside the container */
}

.credits {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: crawl 15s linear infinite;
}

@keyframes crawl {
  0% {
    transform: translateY(100%);  /* Start below the container */
  }
  100% {
    transform: translateY(-100%); /* Move completely above the container */
  }
}
