
html {
  font-size: 14pt;
  font-family: inter, Arial, Helvetica, sans-serif;
  font-weight: 200;
  line-height: 1.3;
  background: rgb(14,87,93);
  background: linear-gradient(39deg, rgba(14,87,93,1) 0%, rgba(70,22,78,1) 100%);
  background-image: url(dish-blur.jpg);
  background-size: cover;
  background-position: center;
  height: 100%;
  overflow: scroll;
}

body {
  padding: 2em;
  margin: 0;
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 50ch;
  margin: 0 auto;
  height: 100%;
  min-height: fit-content;
  box-sizing: border-box;
  gap: 1em;
}

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

h1, h2, h3, h4, h5, h6, b, strong {
  font-weight: 500;
}

h1 {
  text-align: center;
}

input {
  appearance: none;
}

input[type="text"] {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 0.5em 1em;
  width: 8ch;
  height: 2em;
}

input[type="range"] {
  padding: 0 0;
  background: white;
  height: 1px;
  width: 100%;
  flex: 1;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 1px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: white; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

button {
  color: black;
  background: white;
  border: none;
  padding: 0.5em 1em;
  font-size: 1em;
}

button:hover {
  background: rgb(224, 221, 249);
}

.columns {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 1em;
}

.even {
  justify-content: stretch;
}

.column {
  flex: 1
}

.divider {
  width: 100%;
  height: 1px;
  background: white;
}

main {
  display: none;
}