@import url('https://fonts.googleapis.com/css2?family=Fira+Code&family=Gloock&family=Inconsolata&display=swap');

:root{
    --black: #000000;
    --light-black: #111111;
    --lighter-black: #151515;
    --dark-grey: #1e1e1e;
    --grey: #3c3c3c;
    --light-grey: #666666;
    --dark-white: #e1e1e1;
    --white:#ffffff;
    --terminal: #23252F;
    --blue: #195FB2;
    --green: #0086A7;
    --greener: #63A471;
}

*{
    color: var(--dark-white);
    font-family: 'Gloock';
    padding: 2 2;
    margin: 0;
    background-color: var(--light-black);
    box-sizing: border-box;
}

body{
    height: 100vh;
}

.header{
    background-color: var(--light-black);
    padding: 2rem;
    font-size: 3rem;
    height: 10vh;
    text-align: center;
}

.mainpage{
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal{
    height: 60vh;
    width: 110vh;
    bottom: 5vh;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background-color: var(--terminal);
    border-radius: 10px;
    padding: 75px 45px 35px;
    color: var(--light-black);
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: default;
}

.terminal::before{
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #d9515d;
    -webkit-box-shadow: 25px 0 0 #f4c025, 50px 0 0 #3ec930;
    box-shadow: 25px 0 0 #f4c025, 50px 0 0 #3ec930;
}

.terminal::after{
    font-family: 'Fira Code', monospace;
    content: 'xox.contact7@gmail.com';
    position:absolute;
    color: var(--light-grey);
    top: 5px;
    left: 0;
    width: 100%;
    text-align: center;
}

p{
    background-color: var(--terminal);
    line-height: 35px;
    display:inline;
}

.links{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
}

a{
    margin-left: 5vh;
    margin-right: 5vh;
    cursor: help;
}

#output, #input, #typing, p, u{
    background-color: inherit;
    font-family: 'Fira Code', monospace;
    font-size: large;
}

#input{
    color: var(--green);
}

#output{
    color: var(--white);
}

#typing{
    color: var(--green);
    border-right: 10px solid;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    animation: 
        cursor .6s step-end infinite alternate;
}

@keyframes cursor {
    50% { border-color: transparent;}
}

#input::before{
    content: "$ ";
    color: var(--light-grey);
}

#typing::before{
    content: "$";
    color: var(--light-grey);
}