/* CSS Document */

body {
	background-image: url("img/tile.png");
	background-repeat: repeat;
}

div.body {
	background-color: white;
	border: solid 1px;
	border-radius: 6px;
	padding: 5px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.4);
	position: relative;
}

div.button {
	cursor: pointer;
	background-color: rgb(0, 0, 122);
	border-radius: 12px;
	margin: 7px;
	text-align: center;
	display: flex;
	flex-direction: column;
	color: white;
	font-size: 150%;
	font-family: arial;
	-webkit-user-select: none; /* Chrome/Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+ */
	/* Rules below not implemented in browsers yet */
	-o-user-select: none;
	user-select: none;
}

.center-me {
	margin: 0 auto;
}

@keyframes fly_top{
	0%		{bottom: 0;}
	100%	{bottom: -100vh;}
}

@keyframes fly_bottom{
	0%		{top: 0;}
	100%	{top: 100vh;}
}

@keyframes fly_left{
	0%		{right: 0;}
	100%	{right: -100vw;}
}

@keyframes fly_right{
	0%		{left: 0;}
	100%	{left: 100vh;}
}