<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General styles */
body {
  background-color: black;
  color: #00ff00;
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 10px 30px;
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  /* Adjust the height of the banner */
  position: relative;
  /* For positioning child elements */
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
  /* Add space between the trigram and the time difference */
}

.trigram {
  font-size: 2.5rem;
  font-weight: bold;
  color: green;
  text-shadow: 0 0 10px #00ff00;
  margin-right: 20px;
  text-transform: uppercase;
}

.gray-box {
  background-color: #333;
  padding: 5px 10px;
  /* Reduced padding to fit within the 60px height */
  border-radius: 8px;
  height: 40px;
  /* Fixed height */
  color: white;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Vertically center the content */
  gap: 5px;
}

.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.label {
  font-weight: bold;
  font-size: 0.9rem;
  /* Adjusted font size to fit */
}

.switch {
  display: flex;
  gap: 5px;
}

.red,
.green {
  width: 10px;
  /* Adjusted size for dots */
  height: 10px;
  /* Adjusted size for dots */
  border-radius: 50%;
}

.red {
  background-color: red;
}

.green {
  background-color: green;
}

.value {
  color: #fffa;
  font-size: 0.9rem;
  /* Adjusted font size for better fit */
}

.banner-right {
  display: flex;
  gap: 20px;
}

.banner-link {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ff00;
  text-decoration: none;
}

.banner-link:hover {
  text-decoration: underline;
}

/* Container for the title */
.title {
  max-width: 800px; /* Same as .terminal */
  margin: 10px auto; /* Center horizontally and add top/bottom margins */
  padding: 0; /* Ensure no extra padding */
  text-align: left; /* Align text to the left */
}

/* Styling for the h1 text */
.title h1 {
  position: relative;
  font-size: 2.5rem;
  margin: 0;
  color: #0f0; /* Matrix green color */
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
}

/* Styling for individual spans in the h1 */
.title h1 span {
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: inline-block;
}

/* Cursor style */
.cursor {
  display: inline-block;
  width: 10px;
  height: 40px;
  background-color: #00ff00;
  margin-left: 5px;
  /* Remove blinking from the start */
  animation: none;
}

/* Blinking effect */
@keyframes blink {
  50% {
    opacity: 0;
  }
}



/* Main content (terminal-like) */
.terminal {
  max-width: 800px;
  margin: 10px auto;
  padding: 2rem;
  z-index: 1;
  position: relative;
}

h2 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p,
ul {
  line-height: 1.6;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 0.5rem;
}

.highlight {
  color: #00ff00;
  font-weight: bold;
}

a {
  color: #00ff00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/* Background images (parallax effect) */
.background-images {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.background-images .image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.background-images .image:nth-child(1) {
  background-image: url('assets/background1.jpg');
  /* Replace with your image */
  animation: scroll 20s linear infinite;
}

.background-images .image:nth-child(2) {
  background-image: url('assets/background2.jpg');
  /* Replace with your image */
  animation: scroll 30s linear infinite;
}

.background-images .image:nth-child(3) {
  background-image: url('assets/background3.jpg');
  /* Replace with your image */
  animation: scroll 40s linear infinite;
}

/* Background scrolling animation */
@keyframes scroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
  }
}

/* Floating hint in the content */
.terminal-hint {
  display: inline-block;
  background-color: #333;
  color: #00ff00;
  padding: 5px 10px;
  font-family: 'Courier New', monospace;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* Hover effect */
.terminal-hint:hover {
  opacity: 1;
  background-color: #0f7b00;
}

/* Tooltip */
.terminal-hint-tooltip {
  display: none;
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px;
  font-size: 12px;
  border-radius: 3px;
  z-index: 10;
}

.terminal-hint:hover .terminal-hint-tooltip {
  display: block;
}</pre></body></html>