.embedded_link{
    color: rgb(110, 47, 255);
    font-weight: bold;
}

.terminal_text {
    font-family: "Anonymous Pro", monospace;
    font-size: 0.9em;
}

.main_window {
    box-shadow: 10px 10px 10px black;
}

.window,
.terminal-window {
    box-sizing: border-box;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    height: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    background: #212D3A;
}
.window{
    padding:0;
}

.window img{
    width:100%;
}

.terminal-bar-text {
    position: absolute;
    margin-top: 3px;
    color: #212D3A;
    width: 100%;
    text-align: center;
    /* font-weight: 500; */
}

.has-equal-height {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.terminal-output {
    overflow-y: hidden;
    overflow: auto;
}

.column-child {
    flex: 1;
}

.terminal-line {
    position: relative;
    font-family: "Anonymous Pro", monospace;
    font-size: 0.9rem;
    line-height:1.3rem;
    color: #A7A7BE;

    clear:both;
}
.terminal-line .white{
    color: #FFF;
}
.terminal-line.output{
    color: #8b93a7;
    padding-left: 22px;
}
.terminal-line.output .ok{
    color: #4ade80;
    margin-right: 6px;
}
.terminal-line input{
    height:0.9rem;
}

.directory {
    color: #75e1e7;
    font-weight: 500;
    float:left;
    margin-right:10px;
    display:block;
}
.content{
    float:left;
    display:block;
    width: calc(100% - 40px);
    padding-bottom:5px;
}

.success {
    color: #8dd39e;
}
.link {
    color: #21ff80;
}
.help {
    color: #e55025;
    /* e6945e */
}
.skills {
    color: #0000ff;
}

.aboutHead {
    color: #4b40e0;
}
.aboutTail {
    color: #00d742;
}

.code,
.error,
.fa-heart {
    color: #d7566a;
}

.dummy-keyboard {
    opacity: 0;
    filter: alpha(opacity=0);
}

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

.anim-typewriter {
    animation: blinkTextCursor 0.75s ease-in-out infinite;
}

.line {
    margin-left: 0px;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0.9;
    border-right: 7px solid rgb(122, 142, 255);
}

@keyframes blinkTextCursor {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fakeMenu div {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
    position: relative;
    top: 3px;
    left: 6px;
    background-color: #ff3b47;
    border-color: #cd2430;
    display: inline-block;
    box-shadow: -1px -1px 15px #ffffff, 10px 10px 30px rgba(174, 174, 192, 0.4);
}

.fakeMenu div.m {
    left: 11px;
    background-color: #ffb842;
    border-color: #c48725;
}

.fakeMenu div.z {
    left: 16px;
    background-color: #00d742;
    border-color: #03b137;
}

.fakeWindow{
    position: relative;
    display:block;
    box-shadow: 0px 0px 30px    rgba(0, 0, 0, 0.1);
}

.fakeMenu {
    width: 100%;
    box-sizing: border-box;
    height: 28px;
    background-color: #f0f0f3;
    margin: 0 auto;
    padding-left:3px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.fakeScreen {
    box-sizing: border-box;
    width:100%;
    height: 100%;
    font: 1em;
    margin: 0 auto;
    padding-left: 3px;
    padding-right: 3px;
    padding-bottom: 3px;

    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #f0f0f3;

}
.fakeWindowHolder{
    position: relative;
}

.fakeWindowShadow{
    position: absolute;
    z-index: -1;
    margin-top:-40px;
    width:100%;
}

