.page {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-rows: 0.7fr 0.3fr;
  grid-template-columns: 0.7fr 1.1fr 0.7fr;
  gap: 30px;
  grid-template-areas:
    "menu game scores"
    "timer . leaderboard";
}

body {
  font-family: "Rye", cursive;
  background-color: LightPink;
}

.game {
  grid-area: game;
}

.scores {
  margin-top: 200px;
  grid-area: scores;
}

.leaderboard {
  margin-top: 100px;
  grid-area: leaderboard;
}

.timer {
  margin-top: 100px;
  grid-area: timer;
}

.scores p,
.scores h2 {
  text-align: left;
  margin-right: 3vw;
}

.menu {
  margin-top: 200px;
  grid-area: menu;
}

.menu h2 {
  text-align: left;
  margin-left: 17vw;
}

.menu p {
  font-size: 4em;
  text-align: center;
  margin-left: 17vw;
}

.menu button {
  display: block;
  font-size: 1em;
  text-align: left;
  margin-left: 17vw;
  background-color: lightpink;
  box-shadow: 5px 7px 5px 1px rgba(129, 5, 82, 0.6);
  font-family: "Rye", cursive;
  padding: 10px;
  min-width: 20vmin;
  max-width: 20vmin;
}

button:active {
  transform: translateY(4px);
}

h1 {
  margin-top: 100px;
  margin-bottom: 50px;
  font-size: 3em;
  text-align: center;
}

table {
  margin-right: center;
  margin-left: center;
  margin: 0 auto;
}

td {
  background-color: BurlyWood;
  height: 75px;
  width: 75px;
}

.topTimers {
  background-color: lightpink;
  height: auto;
  width: auto;
  align-self: normal;
  padding: 0px 30px 0px 0px;
  display: table-cell;
}

.leaders {
  margin-left: 0px;
  display: table;
}

.leadersRow {
  display: table-row;
}

.container {
  text-align: center;
}

.inflate-an-image {
  display: inline-block;
  width: 400px;
  height: 400px;
  margin: 5px;
}

.dress-a-parent {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  position: relative;
  top: 0;
  left: 0;
}

.dress-an-image {
  position: absolute;
  top: 0px;
  left: 0px;
}

.flex-child {
  flex: 1;
}

.head {
  z-index: 2;
}

.body {
  z-index: 0;
}

.shoes {
  z-index: 1;
}

#mole {
  width: 75px;
}

.arrows {
  position: absolute;
  top: 10px;
  left: 350px;
  font-size: 1.5rem;
}
