/* Incorporates some code from normalize.css v8.0.1, | MIT License */

/* setup */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #111111;
}

/* input */
input {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
input {
  overflow: visible;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* item cards */
ul {
  list-style: none;
  padding: 0;
}
li {
  width: calc(100vw - 32px);
  max-width: 600px;
  background: #fefefe;
  margin: 16px 0;
  padding: 8px;
  box-shadow: 1px 1px 2px #ddd;
  transition: all .2s ease;
}
li:hover {
  box-shadow: 2px 2px 3px #ccc;
  transition: all .2s ease;
}

/* links */
a {
  background-color: transparent;
  transition: color .2s;
  color: #2a6893;
}
a:link,
a:visited {
  color: #2a6893;
}
a:hover {
  color: #35aedd;
}
a:active  {
  transition: color .2s;
  color: #1b77c6;
}

/* misc */
header {
  padding: 0.75em;
  max-width: 600px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
  border-bottom: 2px solid #eee;
}
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
noscript {
  border: 2px solid #992f06;
}
