body {
  font-family: Monaco, monospace;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e1e1e;
}

/* ASCII ART BANNER AND HEADER */
.header {
  display: flex;
  padding: 20px;
}

.column {
  flex: 1;
  padding: 20px;
}

.ascii-art {
  font-family: monospace;
  white-space: pre;
} 

.artifact {
  color: lightblue;
}

li {
  list-style-type: none;
}

/* Link Styling */
a {
  text-decoration: none; /* Remove the default underline */
  color: #00aaff; /* Set the link color to a blue-ish color */
  position: relative; /* Create a relative positioning context */
  transition: color 0.3s ease-in-out; /* Add a smooth color transition effect */
}

li::before {
  content: "[+] ";
  margin-right: 5px;
}

.terminal-window {
  background-color: #1e1e1e;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.title-bar {
  background-color: #453937;
  display: flex;
  align-items: center;
  padding: 4px;
}

.title-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 5px;
}

.red { background-color: #f44; }
.yellow { background-color: #ffcc00; }
.green { background-color: #33cc33; }

.title-text {
  flex-grow: 1;
  color: #fff;
  font-weight: bold;
  margin-left: 5px;
  align-items: center;
}

.terminal-content {
  padding: 10px;
  color: #fff;
}

.terminal-content p {
  margin: 0;
  line-height: 1.2;
}

/* Style the fake command prompt
.terminal-content::before {
  content: "->";
  color: #fff;
}

/* Style user input separately
.terminal-content span {
  color: #ffcc00;
}
*/