body {
	background-image: url(img/gbk.jpg);
	font-family: book antiqua;
}

.judul {
	width: 300px;
	height: 70px;
	line-height: 50px;
	background-color: cyan;
	text-shadow: 0 0 0 7px rgba( 200, 0, 0, .7 ), 0 7px 7px 7px rgba( 200, 0, 0, .7);
	box-shadow: inset 0 0 3px 3px rgba( 0, 0, 0, .3);
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	margin: auto;
	text-transform: uppercase;
	color: azure;
	border: 5px dotted lightgrey;
	border-radius: 20px 20px 20px 20px;
	box-sizing: border-box;
	transition: 3s;
}

	.judul:hover {
		text-shadow: 0 7px 0 7px rgba( 200, 0, 0, .7 ), 0 7px 7px 7px rgba( 200, 0, 0, .7);
	}

.container {
	width: 600px;
	margin: auto;
	padding: 20px;
	position: relative;
}

.area-computer {
	width: 560px;
	height: 250px;
	margin: 5px auto;
	background-color: magenta;
	position: relative;
	padding-top: 40px;
	box-sizing: border-box;
	border-radius: 0 0 20px 20px;
	border: 3px dashed lightgrey;
}

.skor-computer {
	width: 50px;
	height: 50px;
	margin: auto;
	line-height: 50px;
	border: 5px solid grey;
	position: absolute;
	left: 75%;
	margin-left: -75%;
	top: 88%;
	margin-top: -30px;
	background-color: white;
	border-radius: 30px;
	z-index: 1;
	text-align: center;
	line-height: 60px;
	color: cyan;
	font-size: 25px;
	text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}

.area-player {
	width: 560px;
	height: 250px;
	margin: 5px auto;
	background-color: lime;
	position: relative;
	padding-top: 40px;
	box-sizing: border-box;
	border-radius: 20px 20px 0 0;
	border: 3px dashed lightgrey;
}

.skor-player {
	width: 50px;
	height: 50px;
	line-height: 50px;
	margin: auto;
	border: 5px solid grey;
	position: absolute;
	left: 164.5%;
	margin-left: -75%;
	top: 12%;
	margin-top: -30px;
	background-color: white;
	border-radius: 30px;
	z-index: 1;
	text-align: center;
	line-height: 60px;
	color: cyan;
	font-size: 25px;
	text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}

.hasil {
	width: 175px;
	height: 60px;
	border: 5px solid grey;
	position: absolute;
	left: 111%;
	margin-left: -75%;
	top: 50%;
	margin-top: -30px;
	background-color: white;
	border-radius: 30px;
	z-index: 1;
	text-align: center;
	line-height: 60px;
	color: cyan;
	font-size: 25px;
	text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}

ul {
	padding-top: 80px;
	padding-left: 25px
}

li {
	display: inline-block;
	margin: 0 18px;
}

img {
	width: 130px;
	height: 130px;
	display: block;
	margin: auto;
	border-radius: 25%
}

.img-computer {
	left: 5px;
}

.batu, .gunting, .kertas {
	transition: .3s;
	position: relative;
	top: -75px;
	left: 5px;
	cursor: pointer;
}

.batu:hover, .gunting:hover, .kertas:hover, .active {
	box-shadow:  0 0 10px 5px cyan
}

.batu:active, .gunting:active, .kertas:active {
	bottom: 2px;
}