body {
    font-family: "Zeyada", cursive;
    font-weight: 400;
    font-size: x-large;
    background-color: antiquewhite;
    color: saddlebrown;
    padding-bottom: 40%;
}

a {
    color: brown;
}

.title {
    font-style: italic;
}

.index {
    color: #00aa00;
    font-family: monospace;
    font-size: medium;
    -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;
    background-color: black;
    border-radius: 20%;
    background: radial-gradient(#030, #000);
    padding: 10px;
}
@keyframes glow {
    from {
        text-shadow:
            0 0 0.5px #16ff14,
            0 0 0.6px #9fff9e,
            0 0 0.7px #005100,
            0 0 0.8px #005100,
            0 0 0.9px #005100,
            0 0 1px #005100,
            0 0 1.1px #005100;
    }
    to {
        text-shadow:
            0 0 0.6px #03ff00,
            0 0 0.7px #00ae22,
            0 0 0.8px #00ae22,
            0 0 0.9px #00ae22,
            0 0 1px #00ae22,
            0 0 1.1px #00ae22,
            0 0 1.2px #00ae22;
    }
}
