body {
		background-color: rgb(6, 14, 52);
		font-family: monospace, cursive, sans-serif;
		font-size: 1.8em;
		text-align: center;
		height: 100%;
		color: rgb(255, 231, 107);
}
object {
		background-color: rgb(255, 231, 107);
		font-family: monospace, cursive, sans-serif;
		text-align: center;
		color: rgb(6, 14, 52);
		padding: 0;
		overflow: auto;
		width: 100%;
}
h2 {
	font-size: 1.35em;
}
a:link {
	 color: rgb(0, 228, 214);
	 text-decoration: none;
}
a:visited {
	 color: rgb(0, 228, 214);
	 text-decoration: none;
}
a:hover {
	 color: rgb(251, 139, 67);
	 text-decoration: none;
}
a:active {
	 color: red;
	 text-decoration: none;
}
table {
   border: 1px solid rgb(255, 231, 107);
	 border-spacing: 3px;
   margin: 0px auto;
	 color: rgb(255, 231, 107);
	 background-color: rgb(6, 14, 52);
	 border-collapse: collapse;
}
th {
   border: 1px solid rgb(6, 14, 52);
	 border-spacing: 3px;
	 color: rgb(6, 14, 52);
	 background-color: rgb(255, 231, 107);
	 border-collapse: collapse;
   padding: 3px 3px 3px 3px;
}
th.a:link {
	 color: rgb(255, 107, 107);
}
td {
   border: 1px solid rgb(255, 231, 107);
	 border-spacing: 3px;
	 color: rgb(255, 231, 107);
	 background-color: rgb(6, 14, 52);
	 border-collapse: collapse;
   padding: 3px 7px 3px 7px;
}
.vinyl {
    position: static;
    top: 100%;
    left: 100%;
    width: 719px;
    height: 719px;
    margin:0 0 0 0;
    -webkit-animation:spin 15s linear infinite;
    -moz-animation:spin 15s linear infinite;
    animation:spin 15s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(-360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(-360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(-360deg); transform:rotate(-360deg); } }
.blinkiblinki {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
