*{box-sizing:border-box}

html,body{
  height:100%;
}

body{
  margin:0;
  background:radial-gradient(1200px 600px at 50% -10%, #0c1a0c 0%, #050a05 55%);
  color:#7CFF7C;
  font-family: "VT323","Share Tech Mono","Courier New",monospace;
  letter-spacing:.04em;
  text-shadow:0 0 6px rgba(124,255,124,.6);
}

@keyframes flicker{
  0%,100%{opacity:1}
  50%{opacity:.97}
}
body{animation:flicker 3.5s infinite}

.terminal{
  max-width:980px;
  margin:32px auto;
  padding:24px 28px 40px;
  border:2px solid #4bd64b;
  box-shadow:0 0 18px rgba(124,255,124,.6), inset 0 0 18px rgba(124,255,124,.15);
  background:linear-gradient(180deg, rgba(10,20,10,.9), rgba(5,10,5,.95));
}

.terminal h1,.terminal h2{
  margin:0 0 12px;
  text-transform:uppercase;
}

.terminal h1::after{
  content:" ▌";
  animation:blink 1s steps(1) infinite;
}
@keyframes blink{50%{opacity:0}}

.p{
  color:#7CFF7C;
  margin:8px 0;
}

a{
  color:#9aff9a;
  text-decoration:none;
  text-align: center;
}
a:hover{
  text-shadow:0 0 10px #9aff9a;
}

.links{
  display:inline-block;
  margin:6px 0;
  padding:6px 12px;
  border:1px solid #4bd64b;
  color:#7CFF7C;
  background:transparent;
  cursor:pointer;
}
.links:hover{
  background:rgba(124,255,124,.1);
  box-shadow:0 0 10px rgba(124,255,124,.6);
}

input,textarea,select{
  width:100%;
  background:transparent;
  border:1px solid #4bd64b;
  color:#7CFF7C;
  padding:8px 10px;
  margin:6px 0 12px;
}
input:focus,textarea:focus,select:focus{
  outline:none;
  box-shadow:0 0 10px rgba(124,255,124,.6);
}

img{
  max-width:100%;
  box-shadow:0 0 14px rgba(124,255,124,.35);
}


.center{text-align:center}
.spacer{height:16px}

h1 {
    text-align: center;
}

.footer {
  text-align: center;
  padding: 16px;
  border-top: 1px solid #4bd64b;
  margin-top: 24px;
}

a {
  text-decoration-line: none;
}