﻿
@font-face {
    font-family: 'font8bitOp';
    src: url('/fonts/8bitOperatorPlus8-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


.terminal-container {
    position: absolute;
    z-index: 9999;
    top: 100px;
    width: 100vw;
    height: 400px;
    padding: 10px;
}

.terminal {
    font-family: 'font8bitOp', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    width: 100%;
    max-width: 700px;
    height: 60vh;
    background-color: #000000dd;
    color: #00ff00;
    border: 1px solid gray;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.8);

    position: relative;
    padding: 10px;
    overflow-y: scroll;
    word-wrap: break-word;
}

    .terminal p {
        color: #00ff00;
    }

.terminal-input-dummy {
    display: block;
    position: fixed;
    width: 80%;
    height: 90%;
    background-color: transparent;
    color: transparent;
    border: none;
    top: 100px;
    left: 0;
    position: absolute;
    top: 0px;
    left: 0px;
}


/* - Cursor ---------------------------------------- */
.terminal-cursor {
    animation: alternarVisibilidad 1s step-start infinite;
    margin-left: -4px;
}

@keyframes alternarVisibilidad {
    0%, 100% {
        visibility: visible;
    }

    50% {
        visibility: hidden;
    }
}


@media (max-width: 991px) {
    .terminal {
        margin-top: 10px;
        text-align: left;
    }

    .hero-style1{
        height: 110vh;
    }
}
