

#myCanvas {
	border:1px solid #000000;
	background: url('../pics/background1.png');
	float: left;
	margin: 10px;
}


body { margin: 0px;
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: none;
	-webkit-user-select: none;
	display: inline-block;
}



.flappyButton {
    -webkit-appearance: none;
    width: 150px;
    height: 55px;
    margin: 10px;
    margin-left: 20px;
    background-color: #afdcfe;
    border-radius: 5px;
    box-shadow: 0px 3px 6px 2px rgba(0, 0, 0, 0.6);
    font-size: 36px;
    text-align: center;
    touch-action: none; /* verhindert double tap zoom on mobile devices */
    /* touch-action: manipulation; */
    transition: background-color 0.4s; /* Zeit für Übergang des Hovereffekts */
}

.flappyButton:hover {
    background-color: #afedfe;
}


.flappyButton:active {
    background-color: #affefe;
}

