body {
	margin:0;
	font-family:sans-serif;
	background-color:black;
	color:white;
	cursor:default;
	overflow-x:hidden;
	user-select:none;
}

#fileBar {
	width:100vw;
	height:25px;
	background-color:#404040;
	display:flex;
	align-items:center;
}

#fileBar button {
	border:none;
	background-color:transparent;
	color:white;
	margin-left:5px;
	font-weight:bold;
	border-radius:5px;
	height:18px;
}

#fileBar button:hover {
	background-color:gray;
}

#fileBar button:active {
	background-color:#5ea9ff;
}

.hidden {
	display:none;
}

.dropdown{
	background-color:#404040;
	height:90vh;
	width:15vw;
	border-radius:5px;
	margin:5px;
	margin-left:15px;
	position:fixed;
}

.dropdown button{
	border:none;
	background-color:#8c8c8c;
	color:white;
	font-weight:bold;
	border-radius:5px;
	height:18px;
	width:100%;
	font-weight:bold;
	margin-top:5px;
}

.dropdown button:hover{
	background-color:gray;
}

.dropdown button:active{
	background-color:#5ea9ff;
}

#fileInput{
	color:transparent;
}

#fileInput::file-selector-button{
	border:none;
	background-color:transparent;
	color:white;
}

#codeContainer textarea{
	background-color:black;
	resize:none;
	border:none;
	height:100vh;
	width:100vw;
	color:white;
}

#output{
	width:45vw;
	height:100vh;
	display:inline;
	background-color:white;
	border-radius:5px;
}

#welcome button{
	border:none;
	background-color:black;
	color:#00f7ff;
	font-size:1.5rem;
}

#welcome button:hover {
	border:3px solid #00f7ff;
}

#programType{
	border:3px solid #00f7ff;
	background-color:black;
	color:#00f7ff;
	border-radius:5px;
}

.window{
	border:3px solid #03dbfc;
	border-radius:5px;
	position: fixed;
	height:500px;
	width:400px;
	margin-left:50px;
	background-color:black;
	text-align:center;
	resize:both;
	overflow:hidden;
}

.windowBar{
	border:3px solid #03dbfc;
}

#helpDropdown{
	margin-left:50px;
}

#resouresDropdown{
	margin-left: 75px;
}