* {
  box-sizing: border-box;
}

body {
  font-family: "Benton Sans", "Helvetica Neue", helvetica, arial, sans-serif;
  margin: 2em;
}

html.wait * {
  cursor: wait !important;
}

nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

nav a {
  display: inline-block;
  text-decoration: none;
  margin: 0 1em;
  transition: all 0.5s ease;
  text-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

nav a:hover {
  transform: scale(1.5);
}

h1 {
  font-style: italic;
  color: #373fff;
}

p {
  max-width: 40em;
}

form {
  margin-bottom: 25px;
  padding: 15px;
  background-color: cyan;
  display: block;
  width: 100%;
  border-radius: 3px;
}

input {
  display: block;
  margin-bottom: 10px;
  padding: 5px;
  width: 100%;
  max-width: 340px;
  border: 1px solid lightgrey;
  border-radius: 3px;
  font-size: 16px;
}

textarea {
  display: block;
  margin-bottom: 10px;
  padding: 5px;
  width: 100%;
  border: 1px solid lightgrey;
  border-radius: 3px;
  overflow: auto;
  font-family: monospace, monospace;
  font-size: 1em;
}

code {
  display: block;
  margin: 0.5em;
  font-family: monospace, monospace;
  font-size: 1em;
}

input[type="button"],
input[type="submit"],
button {
  -webkit-appearance: button;
  display: inline-block;
  font-size: 16px;
  border-radius: 3px;
  background-color: lightgrey;
  border: 1px solid grey;
  box-shadow: 2px 2px teal;
  cursor: pointer;
}

input[type="button"]:hover,
input[type="submit"]:hover,
button:hover {
  background-color: yellow;
}

input[type="button"]:active,
input[type="submit"]:active,
button:active {
  box-shadow: none;
}

li {
  margin-bottom: 5px;
}

.get-input {
  font-size: smaller;
}

footer {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid lightgrey;
}

div.glitchButton {
  position: fixed;
  top: 20px;
  right: 20px;
}
