body {
	background-color: #272727;
	color: #fff;
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
}

code {
	padding: .2em .4em;
	background-color: #00000050;
	border-radius: 5px;
}

li {
	margin-left: 10px;
}

.toolbar {
	background-color: #333;
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	filter: drop-shadow(0px 0px 5px #00000030);
}

.editor {
	background-color: #333;
	color: #fff;
	font-size: 16px;
	outline: none;
	filter: drop-shadow(0px 5px 5px #00000050);
	border: none;
	box-sizing: border-box;
	width: 100%;
	resize: none;
	padding: 10px;
	min-height: calc(100vh - 150px);
}

.main {
	margin: 20px auto;
	margin-top: 50px;
	border: none;
	max-width: 800px;
	width: 80%;
}

#preview {
	overflow-y: scroll;
}

.tool {
	border: none;
	background-color: #333;
	color: #fff;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 8px;
	border-radius: 5px;
	transition: all 0.1s ease-in-out;
}

.tool:hover {
	cursor: pointer;
	background-color: #555;
	filter: drop-shadow(0px 5px 5px #00000050);
}

.tool:active {
	background-color: #444;
	transform: scale(0.95);
	filter: drop-shadow(0px 0px 5px #00000050);
}

.toolbar-item {
	min-width: 50px;
	display: inline-block;
	position: relative;
	padding: 5px;
}

#filenameInput {
	outline: none;
	height: auto;
	cursor: text;
}

#filenameInput:focus {
	background-color: #555;
	filter: drop-shadow(0px 5px 5px #00000050);
}