@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Lato-Regular.ttf') format('ttf');
}		
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #fff;
    clip-path: inset(0); /* Start: voll sichtbar */
    animation: roll-down 1.2s ease-out forwards;
    z-index: 9999;
}

@keyframes roll-down {
    to {
        clip-path: inset(100% 0 0 0); /* Ziel: von unten geschlossen */
    }
}      
body{font-family:lato, sans-serif;}
      