body {
    background-color: #272727;
    padding: 10px;
}

.fakeButtons {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    border: 1px solid #000;
    position: relative;
    top: 6px;
    left: 6px;
    background-color: #ff3b47;
    border-color: #9d252b;
    display: inline-block;
}

.fakeMinimize {
    left: 11px;
    background-color: #ffc100;
    border-color: #9d802c;
}

.fakeZoom {
    left: 16px;
    background-color: #00d742;
    border-color: #049931;
}

.fakeMenu {
    width: 550px;
    box-sizing: border-box;
    height: 25px;
    background-color: #bbb;
    margin: 0 auto;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.fakeScreen {
    background-color: #151515;
    box-sizing: border-box;
    width: 550px;
    height: 550px;
    margin: 0 auto;
    padding: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.text {
    position: relative;
    left: 50%;
    margin-left: -12.5em;
    text-align: left;
    font-size: 1.25em;
    font-family: monospace;
    white-space: normal;
    font-weight: bold;
    overflow: hidden;
    width: 450px;
}

.line1 {
    color: #9CD9F0;
       animation: type .5s 1s steps(20, end) forwards;
}

.cursor1 {
       animation: blink 1s 2s 2 forwards;
}

.line2 {
    color: #CDEE69;
        animation: type .5s 4.25s steps(20, end) forwards;
}

.cursor2 {
     animation: blink 1s 5.25s 2 forwards;
}

.line3 {
    color: #E09690;
    animation: type .5s 7.5s steps(20, end) forwards;
}

.cursor3 {
    animation: blink 1s 8.5s 2 forwards;
}

.line4 {
    color: #fff;
    animation: type .5s 10.75s steps(20, end) forwards;
}

.cursor4 {
    animation: blink 1s 1.5s infinite;
}
span {
    color: #fff;
    font-weight: bold;
}
@keyframes blink {
    0% {
opacity: 0;
}
    40% {
opacity: 0;
}
    50% {
opacity: 1;
}
    90% {
opacity: 1;
}
    100% {
opacity: 0;
}
}
a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:active {
    text-decoration: underline;
}
