body {
  margin: 0;
  padding: 0;
  background-color: beige;
}
.game-container {
  display: flex;
  align-items: center;
  padding-top: 0;
  flex-direction: column;
  width: 585px;
  margin: auto;
}
.game-title {
  font-size: 64px;
  display: flex;
  font-family: upheaval;
  margin-bottom: 25px;
}
.game-credit {
  font-size: 24px;
  display: flex;
  font-family: upheaval;
  margin: 5px;
  align-self: flex-end;
  color: #5bb;
  flex-direction: column;
  align-items: flex-end;
}
.game-credit > p {
  margin: 5px;
}
.game-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.new-game-button {
  position: absolute;
  right: 10px;
  top: -98px;
  background-color: #f1a510;
  border: 2px solid #d4940f;
  color: #000;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-family: upheaval;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  z-index: 1000;
}
.new-game-button:hover {
  background-color: #ffb733;
  border-color: #e6a00e;
}
.new-game-button:active {
  background-color: #e6a00e;
}
@font-face {
  font-family: upheaval;
  src: url(upheaval.otf);
}
