@font-face {
	font-family: 'Uni Sans';
	src: url(fnt/unisans-heavy.otf);
	font-weight: bold;
	font-weight: 600;
}
@font-face {
	font-family: 'Wii';
	src: url(fnt/wiifont.ttf);
	font-weight: 600;
}
* {
	margin: 0;
	cursor: url('img/wii-cursor.png'), default;
	padding: 0;
	text-decoration: none;
	font-family: 'Uni Sans';
	font-weight: 300;
	font-size: 20pt;
}
body {
	background-image: url('img/bg.png');
    background-size:     cover;
    background-repeat:   no-repeat;
    background-position: center 0%;  
	color: #FFF;
	text-decoration: none;
	font-family: 'Uni Sans';
	font-weight: 300;
	font-size: 25pt;
	cursor: url('img/wii-cursor.png'), default;
    transition: 0.3s;
}
a {
	color: #FFF;
	text-decoration: none;
	cursor: url('img/wii-cursor.png'), default;
}

#menu {
    transition: 0.2s;
  margin: auto;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 55%;
  height: 65%;
  border-radius: 16px;
	background-image:    url(img/curve.png);
	background-size: 100% 100%;
	background-repeat:   no-repeat;
	background-position: center center;  
}

input[type=text] {
	color: #000;
    width: 80%;
	height: 12%;
    padding: 12px 0px;
    box-sizing: border-box;
    border: 2px solid white;
    border-radius: 40px;
    transition: 0.5s;
	opacity: 0.5;
    outline-width: 0;
	padding-left: 10px;
}

input[type=text]:focus {
	opacity: 1;
    border: 2px solid #839aEB;
	padding-left: 16px;
}

input[type=button] {
	color: #FFF;
	height: 12%;
    width: 19%;
    padding: 12px 0px;
    border-radius: 40px;
	border: none;
	background-image:    url(img/button.png);
	background-size:     100%;
	background-repeat:   no-repeat;
	background-position: center center;  
    outline-width: 0;
	transform: scale(0.9);
    transition: 0.2s;
}

input[type=button]:hover {
transform: scale(1);
}

#results {
    transition: 0.2s;
	text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.6);
	text-align: center;
	color: #da72be;
	margin: auto;
	position: relative;
	top: 1.5%;
	width: 90%;
	height: 80%;
	background-color: rgba(216,216,216,0.75);
	border-radius: 16px;
	border: 2px solid #c23b98;
}

#fortunetext {
	text-shadow: 0px 3px 0px rgba(0, 0, 0, 0.6);
	text-align: center;
	color: #111;
    margin: 16px 45px 16px 45px;
	position: relative;
}

#backtomenu {
	color: #FFF;
	height: 128px;
    width: 128px;
    border-radius: 40px;
	border: none;
	background-image:    url(img/exit.png);
	background-size:     100%;
	background-repeat:   no-repeat;
	background-position: center center;  
    outline-width: 0;
	transform: scale(0.9);
    transition: 0.2s;
	position: fixed;
    bottom: 0;
    left: 0;
}

#dayToggle {
	height: 128px;
    width: 128px;
    border-radius: 50%;
	border: none;
	background-image: url(img/today.png);
	background-size:     100%;
	background-repeat:   no-repeat;
	background-position: center center;  
    outline-width: 0;
	transform: scale(0.9);
    transition: 0.2s;
	position: fixed;
    bottom: 0;
    right: 0;
}


#backtomenu:hover {
transform: scale(1);
}

#dayToggle:hover {
transform: scale(1);
}