	
		*{
		    margin: 0;
		    padding: 0;
		    box-sizing: border-box;
			}

		.hide{ 
		    display: none;
		}

		.car, .enemy{
		    width: 40px;
		    height: 80px;
		    background: red;
		    background-image: url('car.png');
		    background-repeat: no-repeat;
		    background-size: 90px 80px;
		    background-position: center;
		    position: absolute;
		    border-radius: 15px;
		    bottom: 120px;
		}

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

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

		.score{
			position: absolute;
			top: 15px;
			left: 40px;
			background: #e84545;
			width: 300px;
			line-height: 70px;
			text-align: center;
			color: white;
			font-size: 1.5em;
			font-family: fantasy;
			box-shadow: 0 5px 5px #777;
		}

		.startScreen{
			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: 50%;
			cursor: pointer;
			letter-spacing: 5;
			font-size: 20px;
			word-spacing: 3;
			line-height: 30px;
			text-transform: uppercase;
			box-shadow: 0 5px 5px #777;
		}
		.carGame{
			width: 100%;
			height: 100vh;
			background-image: url('img.jpg');
			background-repeat: no-repeat;
			background-size: 100% 100%;
		} 