@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300&display=swap');
body{
    background: #303030;
    font-family: 'Source Code Pro', monospace;;
    color: white;
}

.center {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

a{
    text-decoration: none;
    color: #2977ff;
    transition: .3s;
}
a:hover{
    color: #4d7fd6;
 }