* { box-sizing: border-box; }

body {
  background-color: grey;
  background-repeat: no-repeat;
  background-attachment: inherit;
  background-position: center;
}
.container {
  margin: 100px auto;
  width: 320px;
  height: 450px;
  padding-top: 15px;
  background-color: white;
  border-radius: 5%;
  box-shadow: #404040 10px 10px;
}

.screen {
  margin: 10px 10px 10px 15px;
  height: 15%;
  width: 90%;
  background-color: #D7D6D2;
  border-radius: 5%;
  box-shadow: #726257 -3px -3px;
}

table {
  margin: 10px auto;
  width: 90%;
  border: 1px black;
  border-spacing: 5px;
}

.btn {
  margin: 10px;
  height: 70px;
  width: 70px;
  padding: 0 auto;;
  border: outset 1px black;
  border-radius: 5%;
  background-color: #E6D386;
  text-align: center;
  box-shadow: #726257 4px 4px;
}

.btn:hover {
  color: white;
}

.btn:active {
  box-shadow: #726257 -3px -3px;
}
/* typography */

h1 {
  text-align: right;
  font-size: 50px;
  padding-right: 3px;
}
h1,
.btn {
  font-family: 'Bungee', cursive;
}
