@charset "utf-8";
/* CSS Document */

h1{
	text-align: center;
	text-decoration: underline;
	color: grey;
	text-transform: uppercase;
}

#editor{
	display: flex;
	flex-direction: row;
}

#tools{
	background-color: gainsboro;
	border-radius: 10px;
	margin-right: 10px;
	display: flex;
	flex-direction: column;
	width: 25%;
}

fieldset{
	border-radius: 10px;
	margin: 10px
}

input[type="number"]{
	width: 10%;
}

input[type="radio"]{
	cursor: pointer;
}

.tool{
	padding: 10px;
	font-weight: bold;
}

button{
	align-self: center;
	padding: 10px;
	margin: 5px;
	font-size: 14pt;
	width: 30%;
	border: none;
	background-color: darkgray;
	cursor: pointer;
	border-radius: 5px;
}

button:hover{
	background-color: white;
}

label{
	font-weight: bold;
}