body{
    margin:0;
    background:#020202;
    color:#00ffa6;
    font-family:Courier New, monospace;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.terminal{
    width:650px;
    max-width:90%;
    padding:30px;
    border:1px solid #00ffa6;
    background:black;
    box-shadow:0 0 30px rgba(0,255,166,.25);
}

.cursor{
    animation:blink 1s infinite;
}

@keyframes blink{
    50%{opacity:0;}
}

#matrix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: black;
}

.terminal {
  position: relative;
  z-index: 2;
}