@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
}
body {
    line-height: 30px;
    overflow: hidden;
}
p {
    color: rgb(255, 255, 255);
    font-size: medium;
    font-family: 'Ubuntu Mono', monospace;
}
input {
    font-size: medium;
}
input:focus {
    color: #CDDCD8;
    font-family: 'Ubuntu Mono', monospace;
}
i {
    font-style: normal; 
    color: #7DB830;
}
b {
    font-style: normal; 
    color: #6888AA;
}
a {
    color: #5185bd;
    font-size: medium;
}
a:enabled {
    color: #6888AA;
    font-size: medium;
}
.terminal {
    height: 80%;
    width: 90%;
    background-color: #000000;
    padding: 10px;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-x: hidden;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.terminal:hover {
    cursor: pointer !important;
}
.terminal::-webkit-scrollbar {
    display: none;
}
#input {
    background: transparent;
    border: none;
    outline-width: 0;
    width: 100%;
    pointer-events: none;
    color: #ffffff;
    font-family: 'Ubuntu Mono', monospace;
}
form {
    float: left;
    width: max-content;
}
span {
    color: #ffffff;
    font-size: medium;
    font-family: 'Ubuntu Mono', monospace;
    font-weight: normal;
    color: #6888AA;
    background-color: #000;
    border-radius: 4px;
}
span:hover {
    color: #7DB830;
}
.loading {
    display:inline-block;
    clip-path: inset(0 3ch 0 0);
    animation: loadingDots 1s steps(4) infinite;
}
@keyframes loadingDots {
    to {
        clip-path: inset(0 -1ch 0 0)
    }
}
@media (max-width: 550px) {
    .terminal {
        width: 100%;
        height: 100%;
        background-color: #300A24;
        padding: 10px;
        overflow-x: hidden;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        position: absolute;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    #top-text {
        display: none;
    }
}