/* colors */

:root {
  --blue-dark: #1B2B34;
  --blue-light: #6699CC;
  --blue-faint: #C0C5CE;
  --yellow: #FAC863;
  --green: #99C794;
  --red: #EC5f67;
  --gray: #65737E;
}


/* overall layout */

* {
  font-family: "IBM Plex Mono";
  font-weight: 400;
}

body {
  text-align: center;
  line-height: 2;
  background: var(--blue-dark);
  color: var(--blue-faint);
}

header,
main,
footer {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  max-width: 555px;
}

header {
  margin-top: 25px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 3px dotted var(--blue-faint);
}

main {
  text-align: left;
}

footer {
  margin-top: 25px;
  margin-bottom: 25px;
  padding-top: 25px;
  border-top: 3px dotted var(--blue-faint);
}


/* somewhat specific overrides */

h1>a {
  font-weight: 700;
  text-decoration: none;
  color: var(--yellow);

}

h3>a {
  font-weight: 700;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h3 {
  border-bottom: 1px dashed var(--blue-faint);
}

a {
  color: var(--blue-light);
}

strong,
strong a {
  font-weight: 600;
}

input,
select,
button {
  background: var(--gray);
  color: var(--blue-faint);
}

input {
  appearance: textfield;
}

blockquote {
  border-left: 1px dashed var(--blue-faint);
  padding: 10px 25px;
  margin-left: 25px;
}

blockquote:target {
  border: 1px dashed var(--blue-faint);
}

/* very specific overrides */

nav>ul {
  padding-left: 0;
}

nav>ul>li {
  display: inline-block;
  margin: 0 .25rem;
}

input#id_max_entries,
input#id_hour_of_day {
  width: 2rem;
}

input#id_reminder_email {
  width: 20rem;
}

select#id_include_archived {
  width: 10rem;
}

span.red {
  color: var(--red);
}

a.green {
  color: var(--green);
}

button.link-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--blue-light);
  text-decoration: underline;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}