.frame {
    width: 748px;
    height: 355px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    min-width: 300px;
    min-height: 300px;
    font-family: 'Fira Code';
}
.header-child {
    position: absolute;
    width: 100%;
    top: 18px;
    right: 0%;
    left: 0%;
    background-color: #efefef;
    height: 21px;
}
.header-item {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 144px;
    height: 21.5px;
}
.button-icon {
    width: 18px;
    position: relative;
    height: 3px;
}
.square-button {
    width: 19px;
    position: relative;
    border: 3px solid #4ab4f5;
    box-sizing: border-box;
    height: 19px;
}
.x-button-icon {
    width: 26px;
    position: relative;
    height: 25px;
    overflow: hidden;
    flex-shrink: 0;
}
.buttons {
    position: absolute;
    top: 0px;
    right: 0px;
    filter: blur(4px);
    width: 142px;
    height: 39px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    gap: 0px 15px;
}
.buttons1 {
    position: absolute;
    top: 0px;
    right: 0px;
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.25) inset);
    width: 142px;
    height: 39px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    gap: 0px 15px;
}
.header {
    align-self: stretch;
    position: relative;
    height: 39px;
    z-index: 0;
}
.frame1 {
    align-self: stretch;
    flex: 1;
    position: relative;
    background-color: rgba(7, 18, 24, 0.6);
    border-right: 4px solid #efefef;
    border-bottom: 4px solid #efefef;
    border-left: 4px solid #efefef;
    z-index: 1;
}
.footer-icon {
    position: relative;
    z-index: 2;
}
.terminal-text {
    position: relative;
    font-size: 20px;
    line-height: 1.7;
    color: #efefef;
    padding: 10px;
    white-space: pre-wrap;
    display: flex;
    flex-direction: column; 
    justify-content: flex-start;
    position: relative;
    overflow: visible;
}
.done {
    color: #4ab4f5;
    font-weight: bold;
}
.error {
    color: #fc1818; 
    font-weight: bold; 
}
.fatal-error {
    color: #fc1818; 
    font-weight: bold; 
    text-transform: uppercase;
    margin: 300px 250px;
}
#animated-text {
    overflow: hidden;
    display: inline-block; 
    white-space: pre;
    animation: typing 4s steps(60, end), blink 0.5s step-end infinite alternate; 
    margin-top: -36px;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}