body{
	background: black url("a.gif");
	font-family: 'comic neue';
}
table{
	background: gray;
	margin: auto;
    border-radius: 5px;
	width: 600px;
	max-width: 100%;
}
td{
	width: 300px;
	height: 200px;
	max-width: 50%;
}
img{
	max-width:100%;
	max-height:100%;
	vertical-align: center;
}
.c{/* center */
	text-align: center;
}
.b{/* big */
	font-size: 150%;
}
th{
	font-size: 200%;
}
.if{/* iframe */
	width: 100%;
	height: 100%;
}
a{
	color: black;
	text-decoration: none;
}
a:hover{
	animation: rainbow 1s infinite;
	font-weight: bold;
}
.sp{/* spacer */
	padding-left: 20px;
}
.vac{/* vertical align center */
	vertical-align: center;
}


@font-face{
	font-family: "comic neue";
	src: url("ComicNeue-Angular-Regular.woff");
}
@font-face{
	font-family: "upheaval";
	src: url("upheavtt.ttf");
}
@keyframes rainbow{
     0%   {color: blue;}
     8%   {color: indigo;}
    17%   {color: purple;}
    33%   {color: red;}
    50%   {color: orange;}
    66%   {color: yellow;}
    83%   {color: green;}
}