  
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Mono&family=Source+Code+Pro&display=swap');

* {
	font-family: 'Red Hat Mono', monospace;
	margin: 0px;
	padding: 0px;
}

body, html {
	height: 100%;
	display: grid;
	overflow: hidden;
	background: url('../content/background.png');
	background-size: 100% auto;
}

.purple {
	color: #bd93f9;
}
.pink {
	color: #ff79c6;
}
.green {
	color: #50fa7b;
}
.container {
	display:flex;
	flex-direction: row;
	padding-left: 15px;
	gap: 1em;
  }
  .output {
	align-items: center;
  }
  .img {
	align-items: center;
	width: 150px;
  }
.head {
	background: #44475a;
	padding: 3px 3px 3px 3px;
	color: #f8f8f2;
	border-bottom: #595953;
}
.btn:hover{
	background: -webkit-linear-gradient(top, #d0b2fa 0%,#bd93f9 100%);
	background:    -moz-linear-gradient(top, #d0b2fa 0%,#bd93f9 100%);
	background:      -o-linear-gradient(top, #d0b2fa 0%,#bd93f9 100%);
}
.btn {
	color: #f8f8f2;
	width: 16px;
	height: 16px;
	display: block;
	text-align: center;
	float: left;
	margin:1px 1px;
	line-height: 16px;
}
.center { margin: auto; }

#current-time {
	color: #ff79c6;
	font-size: 16px;
}

#date {
	color: #ff79c6;
	font-size: 16px;
}

.window {
	background: rgb(40 42 54);
	padding: 20px;
	border-top: solid;
	border-color: rgba(68 71 90);
	box-shadow: 10px 10px #f8f8f2;
	height: auto;
	width: auto;
}

.termSym {
	color: white;
	font-size: 18px;
}

.termTxt {
	color: #6272a4;
	font-size: 16px;
}

.tree {
	color: #6272a4;
}

.dir {
	color: #bd93f9;
	font-size: 16px;
	line-height: 24px;
}

.link a {
	text-decoration: none;
	color: #50fa7b;
	line-height: 18px;
}
.link a:hover { text-decoration: underline; }

.search-block {
	display: inline-block;
	font-size: 16px;
	width: 84%;
}
.search-block input {
	width: 100%;
	margin: 0 auto;
	font-size: 16px;
	background: transparent;
	border: 1px solid transparent;
	color: #f8f8f2;
}
@-webkit-keyframes fall{1%{opacity:1;}49%{opacity:1;}50%{opacity:0;}99%{opacity:0;}100%{opacity:1;}}
@-moz-keyframes fall{1%{opacity:1;}49%{opacity:1;}50%{opacity:0;}99%{opacity:0;}100%{opacity:1;}}
@-o-keyframes fall{1%{opacity:1;}49%{opacity:1;}50%{opacity:0;}99%{opacity:0;}100%{opacity:1;}}

.cursor{
	-webkit-animation: fall 1s linear infinite;
    -moz-animation: fall 1s linear infinite;
    -o-animation: fall 1s linear infinite;
	}