@font-face{
font-family: "Romulus";
    src: url(_bitmap_font____romulus_by_pix3m-d6aokem.ttf);
    }




body {
    background: rgb(195,0,158);
    background: linear-gradient( 45deg, rgba(195,0,158,1), rgba(9,9,121,1), rgba(0,212,255,1));
    background-size: 900% 900%;
    animation: smoothgrad 24s ease-in-out 0s infinite normal;
    text-align: center;
    font-family: "Romulus";
}

#title1, #body1{
    color:aliceblue;
}

#title1{
    font-size: 32px;
}

#body1{
    font-size: 150%;
}

table.center1 {
    margin-left: auto;
    margin-right: auto;
}

td{
    padding: 16px 16px 16px 16px;
}

#goBack{
    position: fixed;
    left: 10px;
    bottom: 10px;
}

@keyframes smoothgrad {
0% {background-position: 0% 50%;}
50% {background-position: 100% 50%;}
100% {background-position: 0% 50%;}
}

