* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: monospace, sans-serif;
}

body {
	background: #0f172a url("./backgroundimage/blockk.png") no-repeat center fixed;
	background-size: cover;
	color: #e2e8f0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

/* navbar */

.navbar a {
	text-decoration: none;
	color: #e2e8f0;
	font-size: 22px;
	transition: 0.3s;
}

.navbar a:hover {
	color: #38bdf8;
}

.navbar {
  position: fixed;
  top: 10px;
  left: 50%;
  display: flex;
  gap: 25px;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.075);
  padding: 10px 20px;
  border-radius: 10px;
  backdrop-filter: blur(50px);
  border: 1px solid #1e293b;
}

/* Text boxes etc */

.container {
  min-height: 90vh;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 65px;
  padding: 40px;
}

.glass {
	background: rgba(0, 0, 0, 0.075);
	border-radius: 12px;
	backdrop-filter: blur(50px);
	border: 1px solid #1e293b;
}

.card {
	padding: 20px;
	margin: 20px 0;
	max-width: 600px;
}

/* Terminal */

.terminal {
	text-align: left;
	width: 800px;
	height: 600px;
	padding: 20px;
	font-family: monospace;
	color: #38bdf8;
	display: flex;
	flex-direction: column;
}

/*.cursor {
	display: inline-block;
	width: 8px;
	height: 16px;
	background: #22c55e;
	margin-left: 5px;
	animation: blink 0.5s infinite;
}

@keyframes blink {
	50% {opacity: 0; }
}*/

.input-line {
	display: flex;
	align-items: center;
	margin-top: 5px;
}

.terminal input {
	background: transparent;
	border: none;
	outline: none;
	color: #22c55e;
	font-family: monospace;
	font-size: 16px;
	width: 100%;
}

#output {
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
}

#output p, 
#output pre {
	word-wrap: break-word;
	overflow-wrap: break-word;
	white-space: pre-wrap;
}

.terminal-header {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.red { background: #ef4444; }
.yellow { background: #eab308; }
.green { background: #22c55e; }

/* Simple text */

h1 {
	font-size: 42px;
	margin-bottom: 10px;
	color: #38bdf8;
}

h2 {
	font-size: 25px;
	margin-bottom: 10px;
	color: #94a3b8;
}

p {
	font-size: 18px;
	color: #94a3b8;
}