

body {
    background-color: darkolivegreen;
    color: black;
    font-family: "Lucida Console", Monaco, monospace;
    font-size: 14px;
}

.home {
    padding-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.glow {
    color: #fff;
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #b224f5, 0 0 40px #b224f5, 0 0 50px #b224f5, 0 0 60px #b224f5, 0 0 70px #b224f5;
        }
        to {
        text-shadow: 0 0 20px #fff, 0 0 30px #ff00f5, 0 0 40px #ff00f5, 0 0 50px #ff00f5, 0 0 60px #ff00f5, 0 0 70px #ff00f5, 0 0 80px #ff00f5;
          }
     }