@import url('https://fonts.googleapis.com/css?family=Ubuntu');
@import url('https://fonts.googleapis.com/css?family=Ubuntu+Mono'); 

::-webkit-scrollbar {
    display: none;
}

body {  
    background: linear-gradient(45deg, #8400FF 0%,#151119 50%, #FF005A 100%); /* #57003f, #f57453 */
    font-family: Ubuntu;
} 

#container {  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    height: 98.4vh;
} 

#terminal {  
    width: 70vw;  
    height: 65vh;  
    box-shadow: 2px 4px 10px rgba(0,0,0,0.5);
} 

#terminal-bar {
    display: flex;
    width: 100%;  
    height: 30px;  
    align-items: center;
    box-sizing: border-box;
    justify-content: space-between;
    background: linear-gradient(#504b45 0%,#3c3b37 100%);
}

#bar-btns {
    display: flex;  
    align-items: center;
    height: 100%;
} 

.bar-btn {
    display: inherit;
    justify-content: center;  
    align-items: center;  
    padding: 0;
    height: 100%;
    font-size: 16px;
    box-sizing: border-box;
    text-decoration: none;
    color: #000;
    border: none;
    background: linear-gradient(#7d7871 0%, #595953 100%);  
}

.bar-btn:hover { cursor: pointer; }
.bar-btn:focus { outline: none; }

#bar-btn-exit { 
    margin: 0;
    width: 40px;
    height: 100%;
    background: #dc514a;
    transition: background 0.1s ease-in-out;
    color: #fff;
    font-size: 20px;
}

#bar-btn-exit:hover {
    background: #cf3028;
}

#bar-title {   
    color: #d5d0ce;  
    margin-left: 6px;  
    font-size: 14px;  
    line-height: 15px;
} 

#terminal-body {  
    background: rgba(56, 4, 40, 0.7);  
    font-family: 'Ubuntu Mono';  
    height: calc(100% - 30px);  
    padding-top: 2px;  
    margin-top: -1px;
}

#terminal-prompt { display: flex; }
.terminal-prompt-user { color: #61c900; }
.terminal-prompt-location { color: #4878c0; }
.terminal-prompt-bling { color: #dddddd; }
#terminal-text, #terminal-output, .terminal-style-txt { color: #dddddd; }

#terminal-prompt-cursor, #new-terminal-prompt-cursor {  
    display: block;  
    height: 17px;  
    width: 8px;
    animation: blink 1200ms linear infinite;
} 

@keyframes blink {  
    0% { background: #ffffff; }  
    49% { background: #ffffff; }  
    60% { background: transparent; }  
    99% { background: transparent; }
    100% { background: #ffffff; }
}

@media (max-width: 600px) {  
    #terminal {    
        max-height: 90%;    
        width: 90%;  
    }
}