    html{height:100%}
    body{height:100%}
    
    table{width:100%}
    td{vertical-align:top}
    .container{max-width:1000px;margin-top:20px;}
    .center {
         display: block;
         margin-left: auto;
         margin-right: auto;
         width: 90%;
    }
	

	img#dragons {
	/*  width: 100px; */
	/*  height: 100px; */
	/*  background-color: #0CB1C4; */
	  animation-name: spin;
	  animation-duration: 100000ms;
	  animation-iteration-count: infinite;
	  animation-timing-function: linear; 
	  animation-direction: reverse;
	  /* transform: rotate(3deg); */
	   /* transform: rotate(0.3rad);/ */
	   /* transform: rotate(3grad); */ 
	   /* transform: rotate(.03turn);  */
	}

	@keyframes spin {
		from {
			transform:rotate(0deg);
		}
		to {
			transform:rotate(360deg);
		}
	}