body{
    font-family: Kode Mono;
    text-align: center;
    background-image: url(animepics.jpg);
    color: yellow;

}
.glow {
    font-size: 30px;
    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;
    padding: 6px;
}
  
@keyframes glow {
    from {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    }
    to {
      text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
    }
}
img{
    width: 300px;
}
.getpics{
    list-style: none;
    border: 2px solid lightblue;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 600px;
    margin-left: 600px;
}
p{
    padding-right: 100px;
    padding-left: 100px;
    text-shadow: 2px 2px 5px white, 2px 2px 5px gold;
    color: red;
    
}
span{
    text-shadow: 2px 2px 5px white;
    font-weight: bold;
}
ul{
    list-style: none;
    padding-right: 50px;
    color: whitesmoke;
    text-shadow: 3px 3px 6px yellow;
}
.getpics:hover{
    box-shadow: 2px 2px 8px darkgoldenrod;
}