* {
  box-sizing: border-box;
}

body {
  font-family: 'Inconsolata', 'Droid Sans Mono', 'Source Code Pro', monospace;
  background-color: #1a1d23;
  color: #fff;
  overflow: hidden;

}

#title {
  animation: blink 2s infinite;
  font-size: min(10px, 1.5vw);
  color: #34aadc;
  text-shadow: 0 0 10px #34aadc;
}

#title:hover {
  animation: flash 0.5s infinite alternate;
}

@media (max-width: 600px) {
  #title {
    font-size: 8px;
  }
}

@media (max-width: 400px) {
  #title {
    font-size: 6px;
  }
}

@media (max-width: 300px) {
  #title {
    font-size: 4px;
  }
}

@keyframes blink {
  50% {
    opacity: 0.1;
    text-shadow: 0 0 5px #34aadc;
  }
  100% {
    opacity: 1;
    text-shadow: none;
  }
}

@keyframes flash {
  50% {
    background-color: #34aadc;
    color: #1a1d23;
  }
  100% {
    background-color: transparent;
    color: #34aadc;
  }
}

.window-button {
  background-color: rgba(52, 74, 220, 0.1);
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(52, 74, 220, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 1.2em;
  height: 30px;
  justify-content: center;
  align-items: center;
  width: 30px;
  transition: all 0.2s;
}

.window-button:hover {
  background-color: #34aadc;
  color: #1a1d23;
}

.user {
  color: #007bff;
  padding: 2px 4px;
  border-radius: 4px;
  transition: all 0.2s;
}

.user:hover {
  background-color: #073669;
  color: #fff;
  .cmd {
    color: #34aadc;
  }
}

.cmd {
  color: #a6c8f3;
  transition: all 0.2s;
}

.cmd:hover {
  color: #34aadc;
}

#terminal {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  margin-top: 15px;
  padding: 0;
  border: 1px solid #2e4053;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 #2e4053;
  transition: all 0.2s;
  background: linear-gradient(  100deg,#02021b , black);
}

#terminal .title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px;
  height: 30px;
  border-radius: 0 0 5px 5px;
  background-color: rgba(52, 74, 220, 0.1);
  border-bottom: 1px solid #2e4053;
}

#terminal .title-bar .window-buttons {
  display: flex;
  align-items: center;
}

#terminal .title-bar .window-buttons button {
  margin-left: 5px;
}

#terminal .bottom-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 10px;
  height: 30px;
  background-color: rgba(52, 74, 220, 0.1);
  border-top: 1px solid #2e4053;
}

#terminal .content {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

#terminal:hover {
  box-shadow: 0 0 20px 0 #34aadc;
}

#terminal p {
  margin: 0;
}

#terminal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#terminal li {
  padding: 0 10px;
}

#terminal li:before {
  content: '$';
  color: #34aadc;
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

#terminal a {
  color: #00ff2a;
  text-decoration: none;
  transition: all 0.2s;
  padding: 0 5px;
  border-radius: 5px;
}

#terminal a:hover {
  background-color: #2e5351;
  color: #fff;
}

#terminal a:active {
  transform: scale(0.9);
}

@media (max-width: 400px) {
  #terminal .title-bar {
    height: 30px;
  }

  #terminal .content {
    padding: 5px;
  }
}

@media (max-width: 300px) {
  #terminal .title-bar {
    height: 15px;
  }

  #terminal .content {
    padding: 2px;
  }
}

