body {
  background-color: rgb(0, 0, 0);
  font-family: 'Consolas', 'Courier New', monospace;
  color: white;
  font-size: 20px;
}

h1 {
  color: rgb(0, 255, 13);
  text-align: center;
}
h2 {
  color: rgb(93, 76, 141);
  text-align: center;
}

p {
  font-family: verdana;
  text-align: center;
  color: white;
}
text_link {
  color: rgb(0, 255, 13);
}
ul {
  color: rgb(0, 255, 13);
}

#loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loader::after {
  content: '';
  width: 60px;
  height: 60px;
  border: 8px solid #3498db;
  border-top: 8px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.terminal-btn {
  display: inline-block;
  background: #222831;
  color: #39ff14;
  border: 2px solid #393e46;
  border-radius: 2px;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 20px;
  padding: 12px 32px;
  margin: 8px 12px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.terminal-btn:hover {
  background: #393e46;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
  border-color: #39ff14;
}
