scratch-server 1.0.1

Simple HTTP Server
Documentation
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0 auto;
}

h1 {
    animation: fadeInSlide 1.5s ease-out;
    font-size: 3rem;
    color: #333;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}