*{
	border:0;
	padding:0;
	margin:0;
}
body
.wrapper{
	min-height:100vh;
	width:100vw;
	background:black;
	color:aliceblue;
	display: flex;
	flex-direction:column;
	overflow: hidden;
}
.headBar{
	height:100px;
	background: #181818;
	grid-area: header;
	width:100%;
	display:flex;
	flex-direction:row;
	padding: 10px;
}
.main{
	display:flex;
	height:auto;
	width:100%;
	background:blue;
	overflow:hidden;
}

input[type="file"]{
	color:aliceblue;
	font-size:20px;
	opacity:0;
	width:250px;
	min-height:100px;
	z-index:0;
	position:absolute;
	cursor:pointer;
}
.uploadWrapper{
	height:auto;
	width:250px;
	background-color:black;
	display:flex;
	justify-content:center;
	align-items:center ;
	color:white;
	border:2px solid white;
	border-radius:10px;
	margin:3px;
	padding: 45px;
}
.downLoad{
	height: 100%;
	width:100%;
	display: flex;
	justify-content:center;
	align-items:center;
}
.downloadWrapper{
	border:solid 2px aliceblue;
	background-color: black;
	min-width: 200px;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 10px;
	border-radius: 10px;
}
.saveNameField{
	height: 50px;
	width: 300px;
	padding-left: 10px;
	border-radius: 5px;
	background-color: #121212;
	color: #d9d9d9;
	border: 2px solid whitesmoke;
}
:hover.saveNameField{
	border: 2px springgreen solid;
}
.downLoadButton{
	background-color: #121212;
	color: #d9d9d9;
	margin: 10px;
	border: 2px solid white;
	transition: linear 0.5s;
	height: 100%;
	width: 100%;
	border-radius: 10px;
}
:hover.downLoadButton{
	border: 2px solid red;
}
.htmlElement{
	color: orangered;
}
.codeZone{
	background:#121212;
	width:100%;
	height:90vh;
	font-size:2em;
	overflow-y:auto;
	border:solid 2px black;
	padding:20px;
}
.colorSyntax{
	color: green;
	background:oldlace;
}