*{ 
	margin: 0;
	padding: 0; 
	font-family: monospace;
}

.hide {
	display: none;
}

.carGame {
	width: 100%;
	height: 100vh;
	background-image: url('background.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%; 
}

.car {
	width: 70px;
	height: 100px;
	position: absolute;
	left: 150px;
	bottom: 120px;
	background-image: url('png/car-3.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.enemy {
	width: 80px;
	height: 80px;
	position: absolute;
	bottom: 120px;
	background-image: url('png/job2.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	/*color: #ffffffed;
    font-size: 3em;
    text-align: center;
    padding: 13px;*/
}

.lines {
	width: 10px;
	height: 100px;
	background: white;
	margin-left: 195px;
	position: absolute;
}

.gameArea {
	width: 400px;
	height: 100vh;
	background: #2d3436;
	margin: auto;
	position: relative;
	overflow: hidden;
	border-right: 7px dashed #c8d6e5;
	border-left: 7px dashed #c8d6e5;
}

.score {
	position: absolute;
	top: 15px;
	left: 40px;
	background: #10ac84;
	width: 200px;
	line-height: 70px;
	text-align: center;
	font-size: 1.5em;
	font-family: monospace;
	box-shadow: 0 5px 5px #777;
}

.savings {
	position: absolute;
	top: 15px;
	left: 250px;
	background: #10ac84;
	width: 190px;
	line-height: 70px;
	text-align: center;
	font-size: 1.5em;
	font-family: monospace;
	box-shadow: 0 5px 5px #777;
}

.piggi_img {
	float: left;
	width: 60px;
	height: 60px;
	margin: 5px;
	background-image: url('png/savings.png');
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.savings_text {
	float: right;
	width: 120px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	font-size: 1.5em;
	font-family: monospace;
}

.highestscore {
	position: absolute;
    top: 15px;
    left: 1200px;
    background: #10ac84;
    width: 300px;
    line-height: 70px;
    text-align: center;
    font-size: 1.5em;
    font-family: monospace;
    box-shadow: 0 5px 5px #777;
}

.startSreen {
	position: absolute;
	background-color: #ee5253;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: white;
	z-index: 1;
	text-align: center;
	border: 1px solid #ff6b6b;
	padding: 15px;
	margin: auto;
	width: 70%;
	cursor: pointer;
	letter-spacing: 5;
	font-size: 20px;
	word-spacing: 3;
	line-height: 30px;
	/*text-transform: uppercase;*/
	box-shadow: 0 5px 5px #777;
	border-radius: 20px;
}

button:focus {
  outline: none;
  box-shadow: none;
}