@font-face {
    font-family: 'Butcherman';
    src: url(../fonts/butcherman.ttf);
	font-weight: normal;
}
@font-face {
    font-family: 'Akronim';
    src: url(../fonts/akronim.ttf);
	font-weight: normal;
}
@font-face {
    font-family: 'Asset';
    src: url(../fonts/asset.ttf);
	font-weight: normal;
}
@font-face {
    font-family: 'Almendra SC';
    src: url(../fonts/almendrasc.ttf);
	font-weight: normal;
}
@font-face {
    font-family: 'Alex Brush';
    src: url(../fonts/alex_brush.ttf);
	font-weight: normal;
}
li{
	display: inline-block;
	border: 1px black solid;
	list-style-type: none;
}
li>a{
	text-decoration: none;
	color:black;
}
#workshop{
	width: 80%;
	height: auto;
	position: absolute;
   	left: 10%;
	margin: auto;
	font-size: 15px;
	background: #EFEBEF;
	border: 1px #6b04ad solid;
}
#tools{
	width: 94%;
	height: 50%;
	margin: auto;
}

input[type=submit]{
	position: relative;
	left:40%;
}
.tools{
	margin-left: 20%;
}
#menu{
	margin-left: 25%;
}
#layout, #border{
	margin-left: 10%;
}
input[type=number]{
	width: 60px;
}
#banner{
	position: relative;
	margin: 0 auto;
	background-color: blue;
}
.gradient_examples{
	width: 50px;
	height: 50px;
	display: inline-block;
	border: 1px black solid;
	margin-left: 10px;
}
#horizontal_example{
	background: linear-gradient(white, black);
}
#vertical_example{
	background: linear-gradient(to right, white, black);
}
#diagonal_example{
	background: linear-gradient(to bottom right, white, black);
}
#circle_example{
	background: radial-gradient(circle, white, black);
}
#circle2_example{
	background: radial-gradient(circle closest-side, white, black);
}
#sun_example{
	background: radial-gradient(circle at top right, white, black);
}
.border_examples{
	display: inline-block;
	width: 60px;
	height: 60px;
	text-align: center;
	margin-left: 10px;
}
#none_border{
	border: 1px black none; 
}
#solid_border{
	border: 5px black solid; 
}
#dashed_border{
	border: 5px black dashed; 
}
#groove_border{
	border: 5px black groove; 
}
#double_border{
	border: 5px black double; 
}
#dotted_border{
	border: 5px black dotted; 
}
#button_border{
	border: 5px black outset; 
}