body {
  background: #eef4ff;
  color: #1a1a1a;
  font-family: "DotGothic16", monospace;
  margin: auto auto;
  max-width: 800px;
  padding: 20px;
}

h1 {
  text-align: center;
  color: #004ea8;
  border-bottom: 2px solid #004ea8;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

p {
  line-height: 1.5;
}

a {
  color: green;
  text-decoration: none;
}

input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
  border: 2px solid #004ea8;
  border-radius: 0;
  box-shadow: 2px 2px 0 #89aee9;
}

input[type="text"]:focus {
  border-color: #1a6fff;
  outline: none;
}

#result {
  margin-top: 10px;
  padding: 6px 10px;
  background: #dfeaff;
  border-left: 4px solid #004ea8;
}

details {
  border: 1px solid black;
  padding: 4px;
  margin-bottom: 4px;
  font-family: 'DotGothic16';
  font-size: 16px;
  margin-top: 8px;
}

details > summary {
  list-style-type: none;
}

details > summary::before {
  content: url("/images/faq-icon-q16.png");
  padding-right: 4px;
}

details > p::before {
  content: url('/images/faq-icon-a16.png');
  padding-right: 4px;
  padding-left: 16px;
}

details:hover {
  border-color: #004ea8;
  background-color: #dfeaff;
}
