* {
    padding: 0;
    margin: 0;

    overflow-x: hidden;
    overflow-y: hidden;
  }

  button {
    text-align: center;
	display: inline-block;
	margin:5px;
    font-weight: bold;
    padding: 10px 0 10px 10px ;
    background-color: lightgray;
    text-shadow: -1px -1px black, 1px 1px white;
    color: gray;
    -webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-o-border-radius: 7px;
	border-radius: 7px;
    box-shadow: 0 .2em gray; 
    cursor: pointer;
    padding: 10px 30px;
  }

  button:active {
    box-shadow: none;
    position: relative;
    top: .2em;
  }