/* Terminal */

@media screen and (min-width: 500px) {

.type-app-termux {
    background-color: rgba(0, 0, 0, 0.4);
    width: 60vw;
    height: 60vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    top: 15%;
    border: none;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    pointer-events: all;
    opacity: 0;
    animation: fadeIn 0.2s ease forwards;
}

.header-card {
    background-color: rgb(0, 0, 0);
    width: 100%;
    height: 10%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 15px 15px 0px 0px;
}

.welcome-header {
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    margin-left: 32%;
    margin-right: 32%;
}

.bullet-card {
    width: 90px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    border-radius: 100px;
}

.bullet-card.left {left: 5px;}
.bullet-card.right {right: 5px;}

.bullet-bullet {
    background-color: black;
    width: 16px;
    height: 16px;
    margin: 2px;
    border: none;
    border-radius: 100px;
    pointer-events: all;
    transition: filter 0.2s ease;
}

.bullet-bullet:hover  {filter: brightness(50%);}
.bullet-bullet.red    {background-color: red;}
.bullet-bullet.yellow {background-color: yellow;}
.bullet-bullet.green  {background-color: #00b300;}

}

@media screen and (max-width: 500px) {

.type-app-termux {
    background-color: rgba(0, 0, 0, 0.4);
    width: 80vw;
    height: 60vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    top: 18%;
    border: none;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    pointer-events: all;
    opacity: 0;
    animation: fadeIn 0.2s ease forwards;
}

.header-card {
    background-color: rgb(0, 0, 0);
    width: 100%;
    height: 10%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 15px 15px 0px 0px;
}

.welcome-header {
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 2vh;
    margin-left: 32%;
    margin-right: 32%;
}

.bullet-card {
    /* background-color: rgb(255, 145, 0); */
    width: 60px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    border-radius: 100px;
}

.bullet-card.left {left: 5px;}
.bullet-card.right {right: 5px;}

.bullet-bullet {
    /* background-color: black; */
    width: 10px;
    height: 10px;
    margin: 2px;
    border: none;
    border-radius: 100px;
    pointer-events: all;
    transition: filter 0.2s ease;
}

.bullet-bullet:hover  {filter: brightness(50%);}
.bullet-bullet.red    {background-color: red;}
.bullet-bullet.yellow {background-color: yellow;}
.bullet-bullet.green  {background-color: #00b300;}

}

.terminal-container {
    /* background-color: transparent; */
    width: 98%;
    height: 100%;
    margin-top: 0;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    overflow-x: hidden;
    overflow-y: auto;
}

.header-terminal {
    /* background-color: red; */
    width: 100%;
    display: flex;
}

.print-header-terminal {
    padding: 2px;
    color: white;
    font-size: 80%;
    font-family: 'Courier New', Courier, monospace;
}

.body-terminal {
    /* background-color: green; */
    width: 100%;
    height: 85%;
    display: flex;
    flex-direction: column;
}

.row-terminal-input {
    text-decoration: none;
    background-color: transparent;
    font-size: 80%;
    font-family: 'Courier New', Courier, monospace;
    color: white;
    outline: none;
    border: none;
}