:root {
  color: #18181b;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

main {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
  padding: 24px;
}

.picker {
  display: flex;
  width: min(100%, 32rem);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.prompt {
  display: flex;
  height: 7rem;
  margin-bottom: 2rem;
  flex-direction: column;
  justify-content: flex-end;
}

.prompt h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
}

.prompt p {
  margin: 0.5rem 0 0;
  color: #928189;
  font-size: 0.875rem;
}

button {
  min-height: 2.5rem;
  padding: 0 1rem;
  border: 0;
  border-radius: 0.375rem;
  background: #000000;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
}

button:hover {
  background: #42393c;
}

button:focus-visible {
  outline: 2px solid #cd60c2;
  outline-offset: 3px;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
