@media (prefers-color-scheme: dark) {
	:root {
		color-scheme: dark;
	}
}

body,
button,
input {
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,sans-serif;
  font-size: 5vh;
}

body {
  width: 100vmin;
  height: 100svh;

  margin: 0 auto;
}

input {
  width: 20%;
  height: 30%;

  flex-shrink: 0;
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  
  width: 80%;
  height: 60%;
  
  margin: 0 auto;
}

img {
	height: 100%;
	width: auto;
}

label, p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  
  width: 100%;
  height: calc(100% / 6);
  
  user-select: none;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
}

label + label, label + p {
	border-top: 1px solid rgba(127,127,127,0.5);
}

/*
div {
	flex-grow: 1;
	display: flex;
  align-items: center;
  justify-content: space;
  flex-wrap: wrap;
}
*/

span {
	flex-grow: 1;
}

span + span {
	margin-right: 4%;
	flex-grow: 0;
	font-size:75%;
	opacity: 0.5;
}
