@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');

h1 {
	font-family: 'Shadows Into Light', cursive;
	font-size:40px;
}
body {
	background: #888;
}
#container{
	background: #FFF;
	width:950px;
	height:auto;
	min-height: 500px;
	position:relative;
	margin: auto;
	text-align: center;
}
#background {
	position: relative;
	overflow: hidden;
	width:950px;
	height:630px;
	background:url(../images/bg.png);
	background-size: 100% 100%;
	background-position: 0;
	border:2px solid #FFF;
}
#start, #end {
	cursor: pointer;
	width:350px;
	height:220px;
	background:rgba(255, 255, 255, .6);
 	margin-left:auto;
    margin-right:auto;
 	margin-top:100px;
	text-align:center;
	padding:10px;
}
#score {
	width: 200px;
	height: 30px;
	position: absolute;
	right: 1px;
	bottom: 10px;
	background:rgba(255, 255, 255, .6);
    border: 2px solid #fff;
	text-align: center;
	padding: 2px;
	font-size: 22px;	
}
#friend-score {
	width: 300px;
	height: 30px;
	position: absolute;
	left: calc(50% - 150px);
	bottom: 10px;
	background:rgba(255, 255, 255, .6);
    border: 2px solid #fff;
	padding: 2px;
	font-size: 22px;	
}

#life-bar {
	width: 150px;
	height: 30px;
	position: absolute;
	left:1px;
	bottom: 10px;
	background:rgb(255, 0, 0, .7);
    border: 2px solid transparent;
	transition: .2s;
	z-index: 1;
}

#life-bar-bg {
	width: 150px;
	height: 30px;
	position: absolute;
	left: 1px;
	bottom: 10px;
	background:rgba(255, 255, 255, .6);
    border: 2px solid #fff;
	font-size: 22px;	
}


