body{
    background-image: radial-gradient(#1f0d33, #110d33);
    color: white;
    font-family: monospace;
}
#w{
    text-align: center;
    font-size: 5em;
    margin-top: 40vh;
    margin-bottom: 42.5vh;
}
footer {
    text-align: right;
    margin: 2vw;
    font-size: 1.5em;
}
svg{
    fill: white;
}
a{
    text-decoration: none;
    color: white;
}
a:hover{
    color: #d9bef7;
}
#b1{
     animation:blinking1 2s infinite;
}
@keyframes blinking1{
    0%{     color: white;       }
    49%{    color: white;       }
    60%{    color: transparent; }
    80%{    color:transparent;  }
    100%{   color: white;       }
}
#b2{
     animation:blinking2 2s infinite;
}
@keyframes blinking2{
    0%{     color: white;       }
    49%{    color: white;       }
    60%{    color: transparent; }
    90%{    color:transparent;  }
    100%{   color: white;       }
}
#b3{
     animation:blinking3 2s infinite;
}
@keyframes blinking3{
    0%{     color: white;       }
    49%{    color: white;       }
    60%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: white;       }
}