

@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

:root{
  --green: #00ff00;
  --red: #ff3b3b;
  --bg: #000;
  --font: 'VT323', monospace;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--green);
  font-family: var(--font);
}


body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1 0 auto; 
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;   
  text-align: center;
  padding: 28px;
}


#log-container {
  width: 90%;
  max-width: 900px;
  font-size: 2rem;   
  line-height: 1.2;
  margin-bottom: 26px;
  color: var(--green);
}

.vertical-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
  max-width: 520px;
}


button, a.btn {
  background: none;
  border: none;
  color: var(--green);
  text-decoration: none;
  font-family: var(--font);
  font-size: 2rem;
  padding: 8px 12px;
  cursor: pointer;
  min-width: 260px;
  text-align: center;
  display: inline-block;
  transition: transform 0.12s ease;
}


button:hover, a.btn:hover {
  transform: scale(1.06);
}

button.truth, a.btn.truth {
  color: var(--red);
}


input[type="email"], input[type="text"] {
  background: transparent;
  border: none;
  color: var(--green);
  font-family: var(--font);
  font-size: 1.8rem;
  padding: 6px;
  outline: none;
  text-align: left;
  width: 320px;
  max-width: 90%;
}


button.submit {
  font-size: 1.6rem;
}


footer {
  flex-shrink: 0;
  padding: 10px 0;
  color: var(--green);
  font-size: 0.9rem;
  text-align: center;
}


@media (max-width: 520px) {
  #log-container { font-size: 1.3rem; }
  button, a.btn { font-size: 1.4rem; min-width: 200px; }
  input[type="email"] { font-size: 1.4rem; width: 260px; }
}

body {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
  }
  
  button {
    font-size: 1.2rem;
    padding: 14px 24px;
    max-width: 90vw; 
  }
  
  
  .terminal {
    font-size: 1.4rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-width: 95vw;
    margin: 0 auto;
    text-align: left;
  }
  
  
  footer {
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
  
  
  @media (max-width: 768px) {
    body {
      font-size: 1rem;
    }
  
    button {
      font-size: 1rem;
      padding: 12px 18px;
    }
  
    .terminal {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 480px) {
    body {
      font-size: 0.9rem;
    }
  
    button {
      font-size: 0.9rem;
      padding: 10px 14px;
    }
  
    .terminal {
      font-size: 1rem;
    }
  }
  
