* {
	margin: 0; padding: 0;
}

body {
	text-align: center;
	font-family: 'Permanent Marker', cursive;
	background: url('../img/back.jpg') center center fixed;
	background-size: cover;
}

h1 {
	margin: 20px;
}

#foodwheel {
	position: relative;
	width: 600px;
	height: 600px;
	margin: auto;
	margin-top: 80px;
}

#foodwheel .spinbox {
	position: relative;
	width: 100%;
	height: 100%;
}

#foodwheel .wheel {
	width: 100%;
	height: 100%;
	border-radius: 300px;
	background: url('../img/bg3.png') center center;
	background-size: cover;
	box-shadow: 0px 0px 20px black;
}

#foodwheel .foods {
	position: absolute;
	left: 50%;
	top: 50%;
}

#foodwheel .foods .food {
	position: absolute;
	font-size: 30px;
	margin-top: -15px;
	text-transform: uppercase;
	text-shadow: 1px 1px black;
	color: rgba(255, 255, 255, 1);
	text-align: right;
	width: 280px;
	transform-origin: 0 center;
	font-family: 'Architects Daughter', cursive;
}
#foodwheel .foods .food span {
	background: rgba(0,0,0,0.5);
	padding: 2px 5px;
}

#foodwheel .arrow {
	position: absolute;
	color: black;
	top: -80px;
	left: calc(50% - 20px);
	font-size: 60px;
	-ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.btn {
	position: absolute;
	border: 0px;
	background: rgba(0,100,0,0.7);
	color: white;
	font-size: 30px;
	font-family: 'Permanent Marker', cursive;
	padding: 20px;
	top: 420px;
	margin: auto;
	cursor: pointer;
	border-radius: 3px;
	z-index: 100;
	width: 300px;
	left: calc(50% - 150px);
}










