*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #ccc;
}

#container {
  max-width: 1024px;
  margin: auto;
  overflow-x: hidden;
  padding: 1em;
  background-color: #fff;
  min-height: 100vh;
  filter: drop-shadow(0 0 1em #000);
}

body, input, textarea, select, option, button, .button {
  font-family: sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink);
  border: 1px solid #bbb;
  background-color: #ddd;
  padding: 0.25rem 0.5rem;
}

.button, button {
  white-space: nowrap;
}

button:hover, .button:hover {
  background-color: #eee;
}

button img, a.button img {
  height: 1.25rem;
  vertical-align: middle;
}

input[type="text"], input[type="password"], select, textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 0.25em;
  background-color: #eee;
}

fieldset {
  padding: 2em;
  border: 1px solid #ccc;
}

legend, label {
  font-weight: bold;
}

small {
  font-weight: normal;
  color: #aaa;
}

input[type="text"], input[type="password"], button, input[type="submit"], select {
  white-space: nowrap;
  font-size: 1em;
  margin: .5em 0;
}

button img, label img {
  vertical-align: middle;
  height: 1.5em;
}

table {
  width: 100%;
  border-collapse: collapse;
}

td, th {
  padding: .5em 1em;
}

tr {
  border-bottom: 1px solid #ccc;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0.5em 0 0.5em;
  line-height: 1.2;
  font-weight: normal;
}

pre {
  margin:auto;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;"
}

a:link {
  text-decoration: none;
}

.half, .full {
  float: left;
  display: block;
  width: 100%;
  padding: 1em 0;
}

@media screen and (min-width: 1024px) {
  .half, .full {
    padding: 1em 0.5em;
  }
  .half {
    width: 50%;
  }
}
