* {
	font-family: PT Sans, sans-serif;
	font-family: Ubuntu, sans-serif;
	margin:0;
	padding:0;
	color: #fff;
}
body{
	background: #303030;
	display: flex;
	align-content: center;
	justify-content: center;
}
main{
	background: #303030;
	display: flex;
	width: calc(100% - 64px);
	filter: drop-shadow(0px 0px 8px #222);
	padding-top: 8px;
	height: 100%;
	align-content: flex-start;
	justify-content: center;
}
.temp {	
	flex: 1;
	height: auto;
	text-align: center;
	font-size: 48px;
	filter: drop-shadow(2px 2px 4px #000);
}
.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
button{
	height:40px;
	padding:0px 16px;
	line-height:38px;
	background: #479;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	filter: drop-shadow(0px 0px 6px #0009);
	text-shadow: 0px 0px 2px #000;
	transition:0.25s;
	border: 1px solid #4790;
	box-sizing:border-box;
}
button:hover{
	background: #3a8;
	color:#fff;
	filter: drop-shadow(0px 0px 6px #3fc9);
	border:1px solid #fff3;
}
