/* CSS Document */

@font-face {
	font-family: 'Roboto';
	src: url('Roboto-Regular.ttf') format('opentype');
}

@font-face {
	font-family: 'Roboto-Thin';
	src: url('Roboto-Thin.ttf') format('opentype');
}
    

* {
  box-sizing: border-box;
  font-family: Roboto;
}

body {
  margin: 1rem;
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

h1 {
	font-family: Roboto-Thin, Arial, Helvetica, sans-serif;
	text-align: center;
	font-weight: 500;
	font-size: 4rem;
	margin-bottom: 0;
}

h2 {
	font-weight: 200;
}

.caption {
	font-family: Roboto-Thin, Arial, Helvetica, sans-serif;
	text-align: center;
	font-size: 2rem;
}

p {
}

.upper {
	min-height: 80vh;
}

.huh {
	border: 1px solid #ccc;
	border-radius: 16px;
	width: max-content;
	max-width: 90vw;
	margin: 0 auto;
}

.huh p,.huh ul {
	margin: 1rem;
	max-width: 30rem;
}

.huh p.embiggify {
	max-width: 600px;
}

.huh li {
	margin: 1rem 0;
}

.huh img {
	margin: 1rem;
}

.ask {
	font-family: Roboto-Thin, Arial, Helvetica, sans-serif;
	text-align: center;
	margin: 1rem;
	margin-top: 2rem;
}

.result {
	font-family: Roboto, Arial, Helvetica, sans-serif;
	text-align: center;
	margin: 1rem;
	margin-top: 2rem;
}

.language {
	font-family: Roboto-Thin;
	text-align: center;
	margin: 1rem;
	font-size: 2rem;
}

.text {
	font-size: 12pt;
	border-radius: 5px;;
	padding: 1rem;
	margin: 1rem;
	width: 20rem;
	display: inline-block;
	text-align: left;
	border: 2px solid #ddd;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	outline: none;
}

.text:focus {
	background: #eee;
	border: 2px solid #1111ff;
}

.play {
	font-family: Roboto, Arial, Helvetica, sans-serif;
	min-width: 20rem;
	padding: 0rem;
	padding-bottom: 1.25rem;
	margin: 1rem;
	border-bottom: 1px solid #bbb;
}

.playtype {
	display: inline-block;
	margin-right: 2rem;
}

.playtime {
	display: inline-block;
	text-align: right;
	float: right;
	color: gray;
}

.version {
	font-size: 12pt;
	color: gray;
	margin-left: 1rem;
}

.buttons {
	text-align: right;
	margin: 1rem;
	margin-top: 2rem;
}

.buttons-short {
	text-align: right;
	margin: 1rem;
}

.bc {
	text-align: center;
}

.buttons button {
	display: inline-block;
}

.accept {
	background-color: white;
	border: 1px solid green;
	border-radius: 8px;
	color: green;
	padding: 8px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	transition: color 0.1s, background-color 0.1s;
}

.accept:hover {
	background-color: green;
	color: white;
}

.deny {
	background-color: white;
	border: 1px solid red;
	border-radius: 8px;
	color: red;
	padding: 8px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	transition: color 0.1s, background-color 0.1s;
}

.deny:hover {
	background-color: red;
	color: white;
}

.ok {
	background-color: white;
	border: 1px solid #2C2CFF;
	border-radius: 8px;
	color: #2C2CFF;
	padding: 8px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	transition: color 0.1s, background-color 0.1s;
}

.ok:hover {
	background-color: #2C2CFF;
	color: white;
}

.content {
  background-color: #ddd;
  padding: 10px;
}

.lower {
	margin: 0 auto;
	margin-top: 2rem;
	width: 90vw;
	max-width: 120rem;
}

.footer {
  background-color: #f1f1f1;
  padding: 10px;
}
