/* --------------------- Open Props --------------------------- */
/* the props */
/* optional imports that use the props */
/* ------------------------------------------------------------ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: white;
}

@media only screen and (min-width: 600px) {
  html {
    background-color: darkgrey;
  }
  body {
    margin: 1rem auto 1rem auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
}
body {
  font-family: sans-serif;
  padding: 1rem;
  max-width: 30rem;
  background-color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

p,
div,
input,
button {
  font-size: 1rem;
}

hr {
  height: 1px;
  background-color: grey;
  border: none;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.align-content-center {
  align-content: center;
}

.grid {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.grid.-setup {
  grid-template-columns: 1rem minmax(6rem, 20rem) 6rem 1rem 1rem;
}

.grid.-autoclient {
  grid-template-columns: 1rem 1fr;
}

.grid.-col2 {
  grid-template-columns: 1fr 1fr;
}

.grid.-col1 {
  grid-template-columns: 1fr;
}

.grid.-centered {
  justify-content: center;
}

.is-client {
  margin-top: -1rem;
  margin-bottom: -0.5rem;
  font-size: 0.75rem;
}

button.-setup {
  display: block;
  width: 1fr;
  padding: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
div.-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

div.-task {
  font-size: 1.5rem;
}

.passing-request {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 3rem;
}

.bold {
  font-weight: 800;
}

.pre-wrap {
  white-space: pre-wrap;
}

.color-picker {
  border: none;
  background-color: white;
}

.margin-bottom {
  margin-bottom: 1em;
}
