@import url(https://fonts.googleapis.com/css2?family=Oxygen:wght@100;400;700&amp;display=swap);

* {
  box-sizing: border-box;
}

body {
  background-color: rgb(30, 32, 34);
  /* background-image: url('./background-dark.svg'); */
  background-size: 10rem 10rem;
  color: white;
  font-family: 'Oxygen', 'Helvetica', sans-serif;
  /*display: flex; /*allow scrool horizontal sur ticker board preview */
  text-align: center;
  align-items: center;
  flex-direction: column;
  /* old browsers
  max-width: 1000px;
  new browser override
  max-width: min(1000px, 100vw); */
  margin: 0 auto;
}

header {
  font-size: 1.75rem;
  padding: 1rem;
  max-width: 100%;
}

main {
  font-size: 1.5rem;
  max-width: 100%;
}

footer {
  font-size: 1.25rem;
}

a {
  color: white;
}
a:visited {
  color: orange;
}

pre {
  text-align: left;
  background: black;
  padding: 1rem;
  overflow-x: scroll;
  max-width: 100vw;
  margin: 0;
}

section {
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem;
  margin: 1rem 0;
  max-width: 100%;
}

ul.board {
  margin: 0 auto;
}

body,
section,
a,
pre {
  transition: background-color 1s ease, background-image 1s ease, color 1s ease;
}

li h3 {
  text-align: left;
}
li p {
  text-align: left;
}

/*input {
  font-size: 2rem;
  padding: 0.5rem;
  margin: 0.25rem;
  height: 4rem;
  border-width: 0 0 0.25rem 0;
  border-style: solid;
}

input[type='text'] {
  background-color: transparent;
  color: rgb(245, 240, 209);
  border-color: rgb(70, 57, 155);
  box-shadow: 0 0.25rem 0.25rem -0.125rem rgba(17, 17, 10, 0.5);
}

input[type='button'],
input[type='submit'] {
  border-color: transparent;
  background-color: rgb(70, 57, 155);
  color: rgb(245, 240, 209);
  box-shadow: 0 0.25rem 0.25rem -0.125rem rgba(17, 17, 10, 0.5);
}

input[type='button']:disabled {
  background-color: rgb(79, 79, 72);
}*/

h2 a {
  position: relative;
  text-decoration: none;
  color: inherit;
}
h2 a:visited {
  color: inherit;
}

h2 a:hover {
  text-decoration: underline;
}

h2 a:hover::before {
  content: '#';
  display: inline-block;
  position: absolute;
  left: -1em;
  top: 0.2em;
  font-size: 0.75em;
}

/*@media (prefers-color-scheme: light) {
  body {
    background-color: rgb(246, 243, 224);
    background-image: url('./background-light.svg');
    color: rgb(17, 17, 10);
  }

  section {
    background: rgba(255, 255, 255, 0.5);
  }

  a {
    color: rgb(70, 57, 155);
  }
  a:visited {
    color: rgb(156, 81, 135);
  }

  pre {
    background: white;
  }

  /*nput[type='text'] {
    color: rgb(53, 52, 44);
    border-color: rgb(156, 81, 135);
  }

  input[type='button'],
  input[type='submit'] {
    background-color: rgb(156, 81, 135);
  }
}*/

@media screen and (min-width: 600px) {
  section {
    padding: 1rem;
  }
}
