* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: rgb(44, 16, 16);
}

.navbar {
	position: sticky;
	top: 0;
	width: 100%;
	height: 45px;
	z-index: 1000;

	background-color: rgb(44, 83, 109);
	transition: all 0.4s ease;

	display: flex;
	justify-content: center;
	align-items: center;
}

.navbar.scrolled {
	background-color: rgba(58, 104, 134, 0.2);
	backdrop-filter: blur(10px);
  	-webkit-backdrop-filter: blur(10px);
}

.nav-links {
	display: flex;
	gap: 50px;
}

.nav-btn {
	text-decoration: none;
	transition: all 0.4s ease;
	color: black;
	font-weight: bold;
	padding: 8px 16px;
	border-radius: 6px;
}

.nav-btn:link, .nav-btn:visited {
	color: white;
}

.nav-btn:hover {
	background-color: rgb(187, 227, 254);
	color: black;
	text-decoration: none;
}

.navbar.scrolled .nav-btn:link,
.navbar.scrolled .nav-btn:visited {
	color: white;
}

.navbar.scrolled .nav-btn:hover {
	background-color: rgb(58, 104, 134);
	color: white;
	text-decoration: none;
}

.hero {
	height: 50vh;
	width: 100%;

	background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('../assets/images/mich_stadium.png');
	background-size: cover;
	background-position: center;

	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.hero h1 {
	color: white;
	font-size: 50px;
	margin-bottom: 0;

}
.hero p {
	color: white;
	margin-top: 15px;
	font-size: 20px;
}

.hero-socials {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.icon-btn i {
	color: rgb(203, 197, 197);
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 35px;
	width: 35px;
	height: 15px;
	font-size: 1.35rem;
	transition: all 0.3s ease;
	backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.icon-btn:hover i{
	color: white;
	transform: translateY(-6px) scale(1.15);
}

.icon-btn:visited i {
	color: rgb(203, 197, 197);
}

a:link {
	color: blueviolet;
	size: 27px;
}
a:visited {
	color: darkgreen;
	text-decoration: none;
}
a:hover {
	color: darkcyan;
	text-decoration: underline;
}

.wrapper {
	display: flex;
	align-items: flex-start;
}

.sidebar {
	width: 25%;
	height: 120vh;
	position: relative;
	top: 0;
	padding-top: 10px;
	padding-left: 20px;
	padding-right: 20px;
	background-color: rgb(4, 37, 58);
	color: white;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.sidebar img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	max-width: 100%;
	height: auto;
	width: auto;
}

.sidebar p {
	padding-left: 0px;
}

.content {
	width: 75%;
	padding-left: 20px;
}

.status-panel {
    padding: 20px;
	margin-top: 15px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    max-width: 97%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.status-panel p {
	color: rgb(55, 206, 67);
}

.status-panel hr {
    border: 0;
    border-top: 1px solid #615959;
    margin: 10px 0;
}

.status-panel strong, .status-panel h3 {
    color: #f0dfdf;
}

.shell-green { color: rgb(55, 206, 67);}
.shell-blue { color: rgb(10, 161, 242);}

.shell-tree {
	color: rgb(209, 196, 196);
	font-size: 13px;
	padding-top: 5px;
	margin-left: 6px;
}

.bottom-panel {
	font-family: "Courier New", Courier, monospace;
	background-color: rgb(4, 37, 58);  
	padding-bottom: 15px;
}

.bottom-panel p {
	color: rgb(104, 131, 168);
	font-size: 12px;
	padding-left: 15px;
	padding-right: 15px;
}

h1{
	font-family: "Courier New", Courier, monospace;
}

h2 {
	padding-top: 25px;
	padding-left: 9px;
	color: rgb(230, 219, 219);
	font-family: "Courier New", Courier, monospace;
}

h3 {
	padding-top: 10px;
	padding-left: 10px;
	font-family: "Courier New", Courier, monospace;
	color: white;
}

p {
	padding-top: 5px;
	padding-left: 5px;
	color: rgb(230, 219, 219);
	word-spacing: 0.1px;
	font-family: "Courier New", Courier, monospace;
	font-size: 15px;
}

#terminal-container {
    background-color: #000;
    color: rgb(55, 206, 67);
    font-family: 'Courier New', Courier, monospace;
    padding: 20px;
    height: 470px; /* Adjust as needed */
    width: 97%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
    border-radius: 8px;
}

/* Container for past lines */
#terminal-output {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* The prompt and input row */
.input-line {
    display: flex;
    width: 100%;
    align-items: center;
    white-space: nowrap; /* Prevents the prompt from wrapping */
}

.prompt-wrapper {
    display: flex;
    gap: 6px;
    flex-shrink: 0; /* Prevents the prompt from squishing */
}

#terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    padding-left: 8px;
}

/* Custom Colors */
.shell-white { color: #ffffff; }
.shell-green { color: rgb(55, 206, 67); }
.shell-blue { color: #5dade2; }

/* Styling for history lines to look identical */
.terminal-line {
    display: flex;
    gap: 8px;
    margin-bottom: 2px;
}