@font-face {
	font-family: 'Parisienne';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(fonts/parisienne.woff2) format('woff2'), url(fonts/parisienne.woff) format('woff');
}

*,
*:after,
*:before {
	box-sizing: border-box;
}

html, body, .App {
	height: 100%;
	height: 100vh;
	height: -webkit-fill-available;
	height: 100svh;
	margin: 0;
}

html {
	font-size: 100%;
	line-height: 1.4;
}

body {
	font-family: sans-serif;
}

p {
	margin: 0;
}

input,
label,
button {
	font-size: 1em;
	line-height: 1.4;
}

button {
	background: #f5f5f5;
	color: #222;
}


input,
button {
	box-shadow: 0 1px 0 #eee, inset 0 -1px 0 #ccc;
	border: 1px solid #bbb;
	border-radius: 10px;
	transition: all 0.1s ease-in-out;
}

input:hover,
button:hover {
	border-color: #888;
}

button:active {
	outline: 0;
	box-shadow: 0 1px 0 #eee, inset 0 2px 0 #ddd;
}

input,
.Button {
	padding: 5px 10px;
}

.App {
	display: flex;
	flex-direction: column;
}

.AppHeader {
	text-align: center;
	margin: 0;
	padding: 10px 20px;
	font-size: 1.5em;
	font-family: Baskerville, "Bookman Old Style", "Bitstream Charter", "Nimbus Roman No9 L", Garamond, "Apple Garamond", "ITC Garamond Narrow", "New Century Schoolbook", "Century Schoolbook", "Century Schoolbook L", Georgia, serif;
	color: #d22b2b;
	flex-shrink: 0;
	flex-grow: 0;
	transition: all 1s ease-in-out;
}

.Invisible {
	opacity: 0;
}

@media (min-width: 600px) {
	.AppHeader {
		font-size: 2em;
	}
}


.LoginForm,
.App {
	padding: 10px;
	margin: 0 auto;
	width: 100%;
	max-width: 700px;
}

.LoginForm {
	padding-top: 50px;
	text-align: center;
}


.LoginForm-inputs,
.LoginForm-success {
	margin-top: 10px;
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 5px;
}

.AppSounds {
	overflow: auto;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	margin-top: -5px;
	margin-bottom: -5px;
}

.Sound {
	font-size: 2em;
	width: 75px;
	height: 75px;
	margin: 5px;
}


.AppAllIn {
	margin-top: 20px;
	transition: all 1s ease-in-out;
	text-align: center;
}

.AllInToggle {
	font-size: 1.5em;
	width: 10ch;
}

.AllInLoading {
	display: inline-block;
	padding: 10px;
}

.AllIn {
	width: 100%;
}

.Hidden {
	display: none !important;
}

.Invisible {
	visibility: hidden !important;
}