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

* {
    font-family: 'VT323', monospace;
    text-align: center;
    background-color: black;
    color: #adff2f;
}

.container{
    display: inline-block;
  }
  .typed-out{
    overflow: hidden;
    border-right: .15em solid black;
    white-space: nowrap;
    animation: 
      typing 1s forwards;
    font-size: 1.6rem;
    width: 0;
  }
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }

.portal-button {
    color: white;
    border: 1px;
}

a {
    text-decoration: none;
}

button {
    width: 200px;
    height:min-content;
}

footer {
    padding-top: 100px;
}

 .blink {
        animation: blink-animation 1s steps(5, start) infinite;
        -webkit-animation: blink-animation 1s steps(5, start) infinite;
      }
      @keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }
      @-webkit-keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }