body {
    background: linear-gradient(to bottom, #87CEEB, #000000);
    color: white;
    font-family: Georgia, serif;
    padding: 50px;
}

p {
    margin: 10px 0;
}

.demon {
    color: red;
    font-size: 28px;
    font-weight: bold;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px red;
    }

    to {
        text-shadow: 0 0 25px red;
    }
}