:root {
  --color-primary: #333;
  --color-secondary: #EB1B23;
  --background-primary: #fdfdfd;;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--color-primary);
  background-color: var(--background-primary);


  display: flex;
  flex-direction: column;
  align-items: center;
  /*
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
    */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  + p {
    margin-top: 0;
  }
}

a {
  text-decoration: none;
  color: var(--color-secondary);
}

a:hover {
  text-decoration: underline;
}

a.selected {
  text-decoration: underline;
  color: var(--color-secondary);
}

a.selected:hover {
  text-decoration: none;
}

ul, ol {
  list-style: none;
  text-decoration: none;
}

#container {
  width: 80%;
  max-width: 50rem;
  margin-top: 2rem;
}

header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.125em;
  /* font-family: 'Menlo', 'Lucida Console', monospace; */
  text-transform: lowercase;
}

#logo {
  max-width: 15rem;
  height: auto;
}

nav {
  display: flex;
  flex-wrap: nowrap;
  color: var(--color-primary);
  gap: 0.5rem;
  padding: 1rem 0;
  /*
  margin: 1rem 0;
  border-top: 1px solid var(--divider-primary);
  border-bottom: 1px solid var(--divider-primary);
  */

}

main {
  text-align: justify;
}

.details {
  display: flex;
  flex-direction: column;
  padding-left: 0.5rem;
  border-left: 2px solid var(--color-secondary);
}

.payment-info, .committee-list {
  font-size: 0.9em;
}

.label {
  font-weight: bold;
}

.debug {
  border: 1px solid slategray;
}

