* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.box {
  background-color: #f1f2f2;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border-radius: 5px;
  padding: 20px;
}

.captcha {
  /*font-family: "Fira Sans", cursive, sans-serif;*/
  font-family: Georgia, serif;
  font-style: italic;
  /*font-style: oblique 40deg;*/
  /*font-weight: bold;*/
  font-size: 2em;
  /*padding: 2px;*/
  /*border-radius: 5px;*/
  /*text-decoration: line-through;*/
  color: white;
  background-color: #002349;
  display:inline-block;
  /*font-width: ultra-expanded;*/
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.restart {
  display:flex;
  justify-content:center;
  align-items:center;
  display:inline-block;
}

.restart a {
  /*color: white;*/
  padding-left: 50px;
}

.errmsg {
  color: red;
  /*padding: 5px;*/
  transition: 0.5s ease;
}