
@import url('https://fonts.googleapis.com/css2?family=Quattrocento:wght@400;700&display=swap');

body {
    background-color: black;
}

#memento {
    font-family: "Quattrocento";
    font-size: 48pt;
    text-align: center;
    animation: credits 210s linear;
    animation-fill-mode: forwards;
    background-image: url("index.jpg");
    min-width: 1024px;
}

@keyframes credits {
 0%   { 
     transform: translate(0,100vh);     
 }
 100% { 
     transform: translate(0,-105%); 
 }
}

	
