html, body { margin: 0; padding: 0; width: 100%; }
/* #chosen-name
===============
*/
#chosen-name {
  border: 5px solid #e74c3c;
  font-size: 10em;
  text-align: center;
}
/* .push-me-button
==================
*/
.push-me-button {
  position: relative;
  vertical-align: top;
  width: 100%;
  height: 60px;
  padding: 0;
  font-size: 22px;
  color: white;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  background: #e74c3c;
  border: 0;
  border-bottom: 2px solid #db4334;
  cursor: pointer;
  -webkit-box-shadow: inset 0 -2px #db4334;
  box-shadow: inset 0 -2px #db4334;
}
.push-me-button:active {
  top: 1px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
