textarea {
    display: block;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
.main-grid {
    height: 75%; /* force full screen height */
  }
.secondary-grid {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.consoleContainer {
    flex: 1;
    color: #ffffff;
    background-color: transparent;
    font-family: monospace;
    padding: 1rem;
    border: none;
    resize: none;
    width: 100%;
    box-sizing: border-box;
    overflow-y: auto;

    /* CRT */
    text-shadow: 0.04rem 0 0.04rem #ea36af, -0.075rem 0 0.05rem #29d1ff;
    animation-duration: 0.01s;
    animation-name: textflicker;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.inputForm {
    display: flex;
    border-top: 2px solid #29d1ff;
    margin-top: 0;
    background-color: transparent;
}

.inputBox {
    flex: 1;
    background: transparent;
    color: #29d1ff;
    font-family: monospace;
    border: none;
    padding: 1rem;
    box-sizing: border-box;
    outline: none;
}
.terminalWrapper {
    border-radius: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background-image: repeating-linear-gradient(
        to bottom,
        rgba(10, 89, 126, 0.06) 0px,
        rgba(23, 73, 93, 0.038) 1px,
        rgba(0, 0, 0, 1) 1px,
        rgba(0, 0, 0, 1) 4px
    );
    background-size: 100% 2px;
    height: 100%;
}


@keyframes textflicker {
    from {
      text-shadow: 1px 0 0 #ea36af, -2px 0 0 #29d1ff;
    }
    to {
      text-shadow: 2px 0.5px 2px #ea36af, -1px -0.5px 2px #29d1ff;
    }
  }