<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
	font-family: poppins, sans-serif;
	align-items: baseline;
}
body{
	background: rgb(7, 21, 27);
}
.container{
	width: 100%;
	min-height: 80vh;
	padding-left: 4%;
	padding-right: 4%;
	box-sizing: border-box;
	overflow: hidden;
	background: rgb(7, 21, 27);
}
.navbar{
	width: 100%;
	display: flex;
	align-items: center;
}
.logo{
	width: 100px;
	cursor: pointer;
	margin: 40px 0;
}
.menu-icon{
	width: 30px;
	cursor: pointer;
	display: none;
}
nav{
	flex: 1;
	text-align: right;
}
nav ul li{
	list-style: none;
	display: inline-block;
	margin-right: 30px;

}
nav ul li a{
	text-decoration: none;
	color: #fff;
	font-size: 20px;
}
nav ul li a:hover{
	color: #1c9ad7;
}
.terminal {
    max-width: 80%;
    max-height: 80%;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #222;
    border: 2px solid #333;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    font-family: monospace;
    overflow: auto;
    width: 1200px;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    color: #eee;
  }
h3{
    color: #eee;
    justify-content: center;
    align-items: center;
}
  /* Terminal header styles */
  .terminal-header {
    align-items: center;
    background-color: #333;
    border-bottom: 1px solid #444;
    display: flex;
    height: 30px;
    justify-content: space-between;
    padding: 0 10px;
  }

  /* Terminal header button styles */
  .terminal-header button {
    background-color: transparent;
    border: none;
    color: #eee;
    font-size: 14px;
    outline: none;
    cursor: pointer;
  }

  /* Terminal body styles */
  .terminal-body {
    padding: 20px;
  }

  /* Terminal command prompt styles */
  .terminal-prompt {
    color: #eee;
    font-weight: bold;
  }

  /* Terminal command output styles */
  .terminal-output {
    color: #fff;
  }
@media only screen and (max-width: 700px){
	.terminal {
		max-width: 90%;
		font-size: 16px;
		top : 57%;
	  }
	nav ul{
		width: 100%;
		position: absolute;
		top: 99px;
		right: 0;
		z-index: 2;
		background-color: transparent;
	}
	nav ul li{
		display: block;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	nav ul li a{
		color: #fff;
		font-size: 15px;
	}
	.menu-icon{
		display: block;
	}
	#menuList{
		overflow: hidden;
		transition: 0.5s;
	}
	.logo{
		width: 80px;
	}
	.menu-icon{
		width: 30px;
	}
}
@media only screen and (max-height: 700px){
	.terminal {
		max-width: 90%;
		top : 60%;
	  }
} </pre></body></html>