body {
  background: #c73b42;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}
h1 {
  color: white;
  font-size: 50px;
}
#wrapper,
#env-wrapper {
  margin: auto;
  background: white;
  max-width: 400px;
  padding: 20px;
  padding-bottom: 40px;
  position: relative;
}
input {
  display: block;
  box-sizing: border-box;
  width: 300px;
  margin: auto;
  font-size: 20px;
  padding: 5px;
}
input[type="submit"] {
  cursor: pointer;
  font-size: 30px;
  text-transform: uppercase;
}
#wrapper ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#wrapper li a {
  display: inline-block;
  font-size: 30px;
  color: #c73b42;
  margin: 10px;
}
#wrapper li a:hover {
  color: #59191c;
}
#logout {
  position: absolute;
  right: 5px;
  top: 5px;
}
#payload {
  word-break: break-all;
}

#env-wrapper {
  margin-top: 20px;
  padding-bottom: 20px;
}
#environment {
  font-size: 50px;
  text-transform: uppercase;
}
.dev #environment {
  color: yellow;
  text-shadow: black 1px 1px 0;
}
.acceptance #environment {
  color: green;
}
@keyframes flash {
  from {
    color: red;
  }
  to {
    color: black;
  }
}
.production #environment {
  animation-name: flash;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}
