* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, #container {
  width: 100%;
  height: 100%;
}

body {
  background-color: #0a0a0a;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #94a3b8;
}

#container {
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}

.banner {
  flex-basis: calc(50% - 8px);
  padding: 12px 16px;
  border-radius: 16px;
  background-color: #1e293b;
}

a {
  color: #7dd3fc;
  text-decoration: none;
}

a:hover {
  color: #38bdf8;
  text-decoration: underline;
}

p {
  margin-bottom: 6px;
}

p:last-child {
  margin-bottom: 0;
}

em {
  font-style: normal;
  color: #cbd5e1;
}

.key {
  padding: 2px 4px;
  border-radius: 6px;
  border: 1px solid #64748b;
  color: #cbd5e1;
 }
