html {
    overflow-x: hidden;
    height: 100%;
}

body {
    background-color: #151515;
    align-self: center;
    align-content: center;
    vertical-align: middle;
    height: 100%;

}

.main {
    display: flex;
    vertical-align: middle;
    align-self: center;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 500px;
    width: 760px;
    margin: 0 auto;
}


.footer {
    height: 40px;
    bottom: 0;
    width: 760px;
    text-align: bottom;
    margin: 0 auto;
    color: #9CD9F0;

}

.fakeButtons {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: relative;
    left: 20px;
    display: inline-block;
}

.fakeClose {
    margin-left: 10px;
    left: 6px;
    background-color: #ff3b47;
    border-color: #9d252b;
}

.fakeMinimize {
    left: 11px;
    background-color: #ffc100;
    border-color: #9d802c;
}

.fakeZoom {
    left: 16px;
    background-color: #00d742;
    border-color: #049931;
}

.fakeMenu {
    width: 760px;
    box-sizing: border-box;
    height: 35px;
    background-color: #272727;
    margin: 0 auto;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    align-content: center;
}

.fakeScreen {
    background-color: #272727be;
    box-sizing: border-box;
    width: 760px;
    margin: 0 auto;
    padding: 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

p {
    left: 50%;
    text-align: left;
    font-size: 1.25em;
    font-family: monospace;
    white-space: normal;
    overflow-x: hidden;
    width: 100%;
}

a {
    color: #9CD9F0;
    text-decoration: none;
    align-self: center;
    text-align: center;
    width: 100%;
}



cat::before {
    content: ">";
    color: #cf5c19;
    font-weight: bold;
}

name {
    color: #fff;
    font-weight: bold;
}

name::after {
    content: "Hello my name is Gerson de Kleuver 🤖";
    animation: animate;
    animation-duration: 2s;
}

@keyframes animate {

    100% {
        content: "Hlloe my mnea is Gnroes de Kl🤖veeur";
    }

    75% {
        content: "Holle my neam is Gr🤖oesn de Kleevur";
    }

    50% {
        content: "Hlloe my en🤖am si eGrosn ed vKerlue";
    }

    25% {
        content: "loH🤖le ym eanm si eroGsn ed veKrule";
    }

    0% {
        content: "loH🤖le ym eanm si eroGsn ed veKrule";
    }
}






.line1 {
    color: #28f039;
    font-weight: bold;

}



.line2 {
    color: #CDEE69;
    text-indent: 50px
}


.line3 {
    color: #92b7c0;
    text-indent: 50px
}


.line4 {
    color: #fff;
    text-align: center;
}


/* Responsive design */
@media screen and (max-width: 760px) {

    .fakeMenu {
        height: auto;
        width: 100%;
        padding: 0 0 0 0;
        margin: 0 0 0 0;
        border-top-right-radius: 0px;
        border-top-left-radius: 0px;
    }

    .fakeScreen {

        width: 100%;
        height: 100%;
        margin: 0 0 0 0;
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .main {
        width: 100%;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;


    }

    html {
        min-height: 740px;
        background-color: #151515;
        height: 100%;

    }

    body {
        width: 100%;
        padding: 0;
        margin: 0;
        flex: auto;
        background-color: #151515;
        height: 100%;

    }

    .line2,
    .line3 {
        text-indent: 25px;
    }

    .p {
        text-align: left;
        font-size: 1.25em;
        font-family: monospace;
        white-space: normal;
        width: 100%;
    }

    .footer {
        height: auto;
        width: 100%;
        text-align: bottom;
        color: #9CD9F0;
        padding: 0;
    }



}