body {
	color: #49526F;
	background: #1F262C;
	font-family: cursor, monospace;
	width: 98%;
  min-width: 550px;
  margin: 0;
  padding: 0;
}

.flex-container {
    display: flex;
}
.flex-child {
    flex: 1;
}  
.flex-child:first-child {
    margin-right: 20px;
} 

::selection {
	color: #211830;
	background-color: #519975;
  }
  ::-moz-selection {
	color: #211830;
	background-color: #519975;
  }
  textarea {
    left: -1000px;
    position: absolute;
  }
  b {
	font-weight: bold;
	text-decoration: underline;
  }

pre{
	display: block;
  height: auto;
}

  p {
	display: inline;
	line-height: 1.3em;
	overflow: hidden;
	white-space: nowrap;
	margin: 0;
	letter-spacing: 0.05em;
	animation: typing 0.5s steps(30, end);
  }
  h2, p {
  margin: 10px;
}
  .no-animation {
	animation: typing 0 steps(30, end);
  }
  .margin {
	margin-left: 20px;
  }
  @keyframes typing {
	from {
	  width: 0;
	}
	to {
	  width: 100%;
	}
  }
  .index {
	color: #DCDCCC;
  }
  .color2 {
	color: #B89076;
  }
  .command {
	color: #73ABAD;
	text-shadow: 0 0 5px #73ABAD; 
  }
  .error {
	color: #B89076;
  }
  .white {
	color: #fff;
  }
  .inherit,
  a {
	color: #9C8394;
  }
  a {
	text-decoration: inherit;
  }
  a:hover {
	background: #73ABAD;
	color: #211830;
  }
  a:focus {
	outline: 0;
  }

header{
	width: 100%;
	height: 30px;
	position: absolute;
	top: 0;
	left: 0;
	align-items: center;
	justify-content: space-between;
	background: rgba(59, 73, 75, 0.4);
	color: #D8D496;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
}

content{
  
}

footer{
  text-align:center;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333333;
}

ul li {
  float: left;
}

ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover:not(.active) {
  background-color: #111111;
}

ul li a.active {
  background-color: #04AA6D;
}


