body {
  display: flex;
  justify-content: center;
}

section {
  flex-flow: column;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  margin: 15vh;
  width: 600px;
  height: auto;
  padding: 10px;
  text-align: center;
  outline: 10px dashed #1b435e;
  box-shadow: 0 0 0 10px #65a9d7;
  animation: 1.5s animateBorder ease infinite;
}
@keyframes animateBorder {
  to {
    outline-color: #65a9d7;
    box-shadow: 0 0 0 10px #1b435e;
  }
}
h1, h2, #start-button {
  font-family: 'Bungee', cursive;
  font-size: 45px;
  padding: 5px;
}
h1 {
  font-size: 70px;
  color: #65a9d7;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  margin-bottom: 8px;
}
h2, ul {
  color: black;
}
#instructions-box {
  border: 3px solid black;
}
.instructions {
  padding: 0 50px;
  margin-top: 15px;
}
#yellow {
  color: #ffe921;
  font-weight: 800;
}
#orange {
  color: #ff7b0d;
  font-weight: 800;
}
.italics {
  font-style: italic;
}
.bold {
  font-weight: 900;
}
#start-button {
  vertical-align: bottom;
  bottom: 0px;
  border-top: 1px solid #96d1f8;
  background: #65a9d7;
  background: -webkit-gradient(linear, left top, left bottom, from(#3e779d), to(#65a9d7));
  padding: 15px 30px;
  border-radius: 6px;
  text-shadow: #000000 0 2px 0;
  color: white;
  vertical-align: middle;
  margin-bottom: 10px;
}
#start-button:hover {
  border-top-color: #28597a;
  background: #28597a;
  color: #ccc;
  cursor: pointer;
}
#start-button:active {
  border-top-color: #1b435e;
  background: #1b435e;
}
#start-button:focus {
  outline: none;
}
