.buttones,
.supportes{
	position: absolute;
	top: 50%;
	left: 50%;
	height: 100vh;
	width: 90vw;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.buttones{
	display: none;	
}

.message{
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	font-family: sans-serif;
}
.buttone,
.inpborder {
	min-width: 300px;
	width: 300px;
	height: 70px;
	margin: 20px;
	background: rgb(9, 9, 121);
	background: linear-gradient(
		45deg,
		rgba(9, 9, 121, 1) 0%,
		rgba(0, 212, 255, 1) 100%
	);
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	border-radius: 50px;
	box-shadow: 0vh 0vh 20px rgba(0, 0, 0, 0.3);
}

.buttone {
	cursor: pointer;
}

#inp,
#outp,
#baud{
	position: relative;
	top: 20px;
	left: 70px;
	width: 210px;
	height: 30px;
	background: #000;
	font-size: 16px;
	color: #0fa;
	padding-left: 5px;
	font-family: monospace;
	cursor: default;
	border: none;
}

#baud{
	width: 180px;
	left: 100px;
}


.buttone:hover{
	box-shadow: 0vh 0vh 20px rgba(0, 0, 0, 0.7);
}

label{
	position: relative;
	top: -7px;
	left: 20px;
	display: block;
	font-size: 20px;
	font-weight: bold;
	text-align: left;
	font-family: sans-serif;
	width: 70px;
}

/*prevent defaults*/
button,
p,
input {
	display: inline-block;
	border: none;
	margin: 0;
	text-decoration: none;
	padding: 0;
	background: none;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	overflow: hidden;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}
input {
	padding: 0;
}
input:focus {
	outline: none;
}
button:focus {
	outline: none;
	color: black;
}

textarea:focus {
	outline: none;
}
select:focus {
	color: #000;
}
a,
a:link,
a:visited {
	color: var(--maincolor);
}
