body {
	font-family: Arial, sans-serif;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    font-size: 16px;
	background-color: #f0bb7d;
}

h1, h2, h3, h4, h5, h6 {
	text-align: center;
}

input[type=text], input[type=password], option, select {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 3px solid #a87844;
	box-sizing: border-box;
	border-radius: 15px;
}

/** Buttons */
.base-button {
	padding: 12px 20px;
	margin: 8px 0px;
	border: none;
	cursor: pointer;
	width: 100%;
	font-size: 1em;
	border-radius: 15px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.button-brown {
	background-color: #a87844;
	color: #fff;
}

button:hover {
	opacity: 0.8;
}

.hidden {
	display: none;
}

.container {
	padding: 1em;
}

.center {  
    text-align: center;
}

.input-error {
    background-color: #ffa1a1;
}

#translation-result {
    font-weight: bold;
    text-align: center;
    font-size: 120%;
}

#warning {
	padding: 12px 20px;
	margin: 8px 0px;
    background-color: #654C23;
    color: white;
	border-radius: 15px;
    text-align: center;
    padding-bottom: 1em;
    padding-top: 2em;
    font-size: 14px;
	border: none;
}