body {
    font-family: Roboto, sans-serif;
    background: linear-gradient(rgb(151, 151, 151), rgb(210, 210, 210));
    background-attachment: fixed;

    /* Play the entrance animation once when the page loads */
    animation: sweepUp 1s ease-out both;
}

@keyframes sweepUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#script {
    font-family: monospace;
}
