* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
}
.background {
	height: 100vh; /* gleich 1% der bildschrim beitre*/
	width: 100vw; /* w und h wird untershcieden wie Width und Heigt*/
	background: url('images/background_toast.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover; /* vendor prefixes, weg soo ältere browser dies das und damit kompatibler esh */
    -o-background-size: cover;
    background-size: cover;
}

#bird-1{
	height: 100px;
	width: 130px;
	position: fixed;
	top: 50vh;
	left: 40vw;
	z-index: 100;
}
.bird{
	height: 100px;
	width: 130px;
	position: fixed;
	top: 40vh;
	left: 30vw;
	z-index: 100;

}

.pipe_sprite{
	position: fixed;
	top: 40vh;
	left: 100vw;
	height: 70vh;
	width: 6vw;
	background: radial-gradient(rgba(148, 95, 34, 0.993) 20%, rgba(238, 109, 238, 0.877));
	border: 5px solid rgba(0, 0, 0, 0.685);
}

.message{
	position: absolute;
	z-index: 10;
	color: rgb(252, 249, 249);
	top: 30%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.messageStyle{
	background: rgba(235, 180, 80, 0.705);
	padding: 30px;
	box-shadow: (0,0,0,0.24) 0px 3px 8px;
	border-radius: 5%;
	
}

.score{
	position: fixed;
	z-index: 10;
	height: 10vh;
	font-size: 10vh;
	font-weight: 100;
color: white;
-webkit-text-stroke-width: 2px;
-webkit-text-fill-color: black;
top: 0;
left: 0;
margin: 10px;
}



@media only screen and (max-width: 1080px){
	.message{
		font-size: 50px;
		top: 50%;
white-space: nowrap;
	}

	.score{
		font-size: 8vh;
	}

	.bird{
		width: 120px;
		height: 90px;
	}
	.pipe_sprite{
		width: 14vw;
	}
}


