html, body {
  width: 100%;
  height: 100%;
}
body {
  background-color: #ffffff;
  margin: 0;
  overflow: hidden;
  font-family: arial;
}
#start-screen {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(0,0,0,0.5);
}
#title {
  color: white;
  font-size: 200px;
  font-family: 'Raleway Dots', cursive;
  text-shadow: 0px 0px 5px white;
  margin: 0;
  text-align: center;
}
#start-button {
  /* width: 100%;
  height: 100%; */
  font-size: 40px;
  font-weight: 300;
  font-family: 'Raleway', sans-serif;
  text-shadow: 0px 0px 5px white;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  box-orient: horizontal;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  margin: 7vh;
}
#initial-directions {
  width: 720px;
  color: white;
  font-size: 20px;
  font-weight: 300;
  font-family: 'Raleway', sans-serif;
  text-shadow: 0px 0px 5px black;
  text-align: center;
  margin: 7vh;
}
#directions {
  position: absolute;
  /* bottom: 5px; */
  background-color: transparent;
  display: none;
  flex-direction: column;
  color: black;
  font-size: 17px;
  font-weight: 300;
  font-family: 'Raleway', sans-serif;
  text-shadow: 0px 0px 5px white;
}
#directions p {
  margin: 3px;
}
#directions #key-map-title {
  margin-bottom: 10px;
}
#directions #double-jump {
  margin-top: 15px;
}
