@charset "utf-8";
/* CSS Document*/

html, body {
	font-family: Tahoma, Geneva, sans-serif;
	margin: 0%;
	padding: 0%;
	width: 100%;
	height: 100%;
	background-position: center center;
	background: url('conan_images_720p.gif')no-repeat fixed;
	background-size: 100% 100%;
}

a:link, a:visited, a:active {
	font-weight: bold;
	color:#99dfff;
	text-align: center;
}

a:hover {
	background-color: black;
}

.container {
	margin: 0;
	padding: 0;
	width: 30%;
	height: 30%;
	margin-left: auto;
	margin-right: auto;
}

.center {
	margin: 3;
	padding: 0;
	width: 75%;
	height: 75%;
	margin-left: auto;
	margin-right: auto;
}

IMG.center {
	display: block;
	width: 100%;
	height: 100%;
}

.content {
	color: white;
	margin: 0;
	padding-top: 5px;
	padding-bottom: 2px;
	padding-right: 5px;
	padding-left: 5px;
	border-radius: 5px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border: 3px solid #948a85;
			/* background-color:black; */
	background: rgba(0,0,0,0.7);
	text-align: justify;
	width: 40%;
	margin-left: auto;
	margin-right: auto;
}

.bottomleft {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 20px;
}
.bottomright {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 10px;
}
@keyframes flash-color {
  0% { color: blue; }
  50% { color: red; }
  100% { color: blue; }
}
.flashing-link {
  animation: flash-color 1s infinite alternate; /* 1s duration, infinite loop, alternates direction */
}