@charset "utf-8";
/* CSS Document */

html{
	background-color:#003F7E;
	margin: 0;
	padding: 0;
}

body{
	margin: 0;
	padding: 0;
}


#player {
 	top:0; 
 	width: 100%; 
 	background: #003F7E; 
 	z-index: 9999999999;
 }

.button {
	margin: 20px auto;
  display:block;
  width: 400px;
  height: 104px;
  text-align: center;
  text-decoration: none;
  outline: none;
	padding: 30px 0 ;
font-size: 30px;
}
.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.button {
  position: relative;
  background-color: #f7d034;
  border-radius: 4px;
  color: #003F7E;
  line-height: 52px;
  -webkit-transition: none;
  transition: none;
  box-shadow: 0 3px 0 #f7ba59;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
}
.button:hover {
  top: -4px;
  box-shadow: 0 7px 0 #f7ba59;
}
.button:active {
  top: 3px;
  box-shadow: none;
}