html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #05445E;
  height: 100vh;
  width: 100vw;
  position: absolute;
}

* {
  box-sizing: border-box;
}

section#content {
  padding: 25px 100px;
  margin: 0 200px;
  background-color: white;
  font-size: 24px;
  font-family: Arial, Helvetica, sans-serif;
  min-width: 250px;
}

#content p {
  line-height: 1.5em;
}

#logo {
  display: block;
  margin: 20px auto;
  height: 30px
}

ul.passwords {
  padding: 0;
}

ul.passwords li {
  list-style: none;
  padding: 0;
  font-family: monospace;
}

ul.passwords span.ok {
  color: green;
  user-select: none;
}

ul.passwords span.not_ok {
  color: red;
}

ul#insecure-password-list {
  user-select: none;
}

p.small {
  font-size: smaller;
}
