@import url("/main.inc.css");


.wrapper{
	width: 500px;
	margin: 0 auto;
}

h1{
	font-size: 50px;
	line-height: 50px;
	margin-top: 34px;
	text-align: center;
}
h1 sub{
	color: #127;
	font-size: 36px;
	font-style: italic;
}
h1 sup{
	font-size: 38px;
	color: #567;
}
#t_rahmen{
	position:absolute;
	left: 50%;
	top: 350px;
}
#t_rahmen > div{
	position:absolute;
	left: -231px;
	top: -231px;
	width: 450px;
	height: 450px;
	padding: 6px;
}
#tictactoe{
	border-collapse: collapse;
	background: #ffe;
}
#tictactoe td{
	height: 150px;
	width: 150px;
	border: 5px ridge #555;
	padding: 0;
	margin: 0;
	font-size: 5px;
	line-height: 5px;
}
#tictactoe .active:hover{
	background: rgba(255,0,0,0.1);
	cursor: pointer;
}
#tictactoe .is_x{
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(x.svg);
}
#tictactoe .is_o{
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(o.svg);
}
.bigbutton{
	font-size: 22px;
	font-weight: bold;
	padding: 15px 25px;
}
#message{
	position:absolute;
	width: 450px;
	height: 470px;
	top: 0;
	left: 0;
	padding: 0;
	background: rgba(50,30,20,0.8);
	border: 6px ridge #9A9393;
	font-size: 45px;
	color: #fff;
	font-weight:bold;
	text-shadow: 5px 5px 15px #000;
	text-align: center;
}
#message > div{
	margin-top: 200px;
}

