div#maintitle{padding:5px;margin:auto;outline:3px solid white}
h2{color: blue;}
a{outline:2px dashed blue;}
img{width:75px;height:height:75px;}
legend{color:white;background:#0000AA;}
fieldset{padding:5px;margin:auto;outline:2px solid #0000AA;}
div{color: black;outline:0px solid black;}
.full{width:100vw; }
/* Class Specifications */
.glow{content: ""; position: relative; background: #000; z-index: 0; }
.glow::before{background: linear-gradient(45deg, #ff0000,#ff8800,#ffff00,#00ff00,#00ffff,#0000ff,#ff00ff,#ff6666); background-size: 600%; top: -2px; left: -2px; z-index: -1; width: calc(100% + 4px); height: calc(100% + 4px); filter: blur(8px); border-radius: 25px; opacity: 1; content: ""; position: absolute; animation: glowing 20s linear infinite; }
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0;} 
} 
