html,
body {
  min-height: max(100%, 100vh);
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  transition: background-color 0.3s ease;
  color: #fff;
  background: #000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: #fff;
}

.nav-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: inline;
  margin-right: 20px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

.nav-menu li a {
  text-decoration: none;
  color: #fff;
}

.wallpaper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://raw.githubusercontent.com/Mistium/Origin-OS/main/Wallpapers/originOS%20Dawn.png') no-repeat center center/cover;
  z-index: -1;
  user-select: none; /* Disable text selection */
  -webkit-user-drag: none; /* Disable image dragging in WebKit browsers */
  -moz-user-drag: none; /* Disable image dragging in Firefox */
  -ms-user-drag: none; /* Disable image dragging in Internet Explorer */
}

.terminal_window {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.terminal_titlebar {
  display: flex;
  align-items: center;
  margin: 0px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
}

.terminal_title {
  margin: 0;
  padding: 0;
  font-size: 1.2em;
  color: #fff;
  margin-left: 10px;
  user-select: none; /* Disable text selection */
}

.terminal_input {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
}

.prompt {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  padding: 0 10px;
  user-select: none; /* Disable text selection */
}

.terminal_input .input {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  padding: 0 10px;
  outline: none; /* Disable the outline when the user selects the input */
}
