body{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(0, 5, 156);
    color: rgb(255, 255, 255);
    text-shadow: 5px 5px 20px black;
}
div{
    margin: 30px;
}
a{
    color: magenta;
    transition: 0.25s;
}
a:hover{
    color: rgb(255, 155, 255);
}
a:active{
    color: rgb(255, 105, 255);
}