@media screen and (max-width: 600px) {
  body {
    font-size: 11px !important;
  }
}

.server-error-block {
  margin-top: 10em;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
  padding: 1em;
  background: white;
  color: red;
  border-radius: 9px;
}

.server-error-block button {
  font-weight: bold;
  font-size: 0.8em;
  margin-top: 1em;
  padding: 0.5em;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0px 0px 2px 1px #000000;
}

.server-error-block button:hover {
  background: steelblue;
  color: white;
  box-shadow: 0px 0px 3px 1px #ee7f00;
}

.server-error-block button:active {
  background: steelblue;
  color: silver;
  box-shadow: none;
}