* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
html {
	background-color: #373737;
	height: 100%;
}
body {
	display: flex;
	height: 100%;
}
.texts {
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	right: 5%;
}
.text {
	margin-top: 30px;
	color: #0f0f0f;
	border-radius: 5px;
	background-color: #f7f7f7;
	line-height: 1.5;
	font-family: sans-serif;

	height: 350px;
	width: 900px;
	overflow: auto;

	display: block;
}
#inputChars,
#outputChars {
	color: #f7f7f7;
	font-family: sans-serif;
	line-height: 1.5;
}

.options {
	color: #f7f7f7;
	border-radius: 10px;
	background-color: #3f3f3f;

	width: 25%;
	height: 100%;
	margin: 50;

	text-align: center;

	position: absolute;
	left: 1%;
}
.optionStuff {
	position: absolute;
	top: 25%;
}

.button {
	background-color: #1f1f1f;
	border: none;
	color: white;
	padding: 10px 16px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
}
.button:hover {
	background-color: #2f2f2f;
}

.options h1 {
	top: 1%;
	text-align: center;
	font-size: 400%;
	font-family: sans-serif;
}
.options h2 {
	text-align: center;
	font-size: 170%;
	font-family: sans-serif;
}
.select-wrapper {
	position: relative;
	width: 200px;
}

.select-wrapper::before {
	color: #fff;
	font-size: 20px;
	pointer-events: none;
	position: absolute;
	right: 15px;
	top: 10px;
}

select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #929292;
	border: none;
	border-radius: 3px;
	box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, .3);
	color: #fff;
	cursor: pointer;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	height: 40px;
	outline: none;
	padding-left: 10px;
	width: 100%;
}

select option {
	color: #666;
}

select::-ms-expand {
	display: none;
}

select:focus::-ms-value {
	background-color: transparent;
}

.viewer,
.viewer2,
.viewer3 {
	cursor: pointer;
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-items: baseline;
	bottom: 0;
	right: 0;
	-webkit-user-select: none; /* Safari */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}

.viewer2 {
	bottom: 32px;
}
.viewer3 {
	bottom: 64px;
}

.display {
	height: 30px;
	width: 30px;
	color: #0f0f0f;
	border-radius: 10px;
	background-color: #f7f7f7;

	font-family: Helvetica, Arial, sans-serif;
	text-align: center;
}

.invisible {
	display: none;
}

#divtoshow {
	z-index: 99;
	height: 30px;
	border-radius: 10px;
	background-color: #f7f7f7;
	color: #000;
	text-align: center;
	line-height: 1.5;
	position: relative;
	font-family: sans-serif;
}

@keyframes moveUpAndDie {
	from {
		transform: translateY(0);
		opacity: 1;
	}
	to {
		transform: translateY(20px);
		opacity: 0;
	}
}
