@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,400;1,500&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    color: rgb(201, 201, 201);
    background-color: #282a36;
}
a{
    color: coral;
    text-decoration: none;
}
p{ font-family: 'Source Code Pro', monospace !important;}
a:hover{
    text-decoration: underline;
}
.center-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.src-code-font{
    font-family: 'Source Code Pro', monospace;;
}
.text{
    color: #999999;
}
.text2{
    opacity: 0.8;
}
.terminal-content{
    width: 100%;
    max-width: 800px;
}
.command-help{
    width: 90%;
    height: auto;
    margin:  auto;
    text-align: center;
    line-height: 2em;
    letter-spacing: 1px;
}
.terminal{
    height: 420px;
    width: auto;
    margin: 1rem;
    padding: 1rem;
    background-color: #1a1a27;
    border: 0.8rem solid #2d2f3d;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(19, 17, 17, 0.877);
    overflow-x: hidden;
    overflow-y: auto;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
.terminal::-webkit-scrollbar {
  display: none;
}
.welcome-screen{
    line-height: 1.8rem;
}
.welcome-screen h1{
    text-align: center;
    font-size: 2.5rem;
    font-weight: normal;
    text-transform: uppercase;
    color: #0fefef;
    margin: 0.3em auto 0.5em;
}
.welcome-screen h3{
    font-size: 1.5rem;
    color: white;
}

.green{color: lawngreen !important;}
.red{color: coral !important;}
.darkgreen{color: green !important;}

.intro{
    color: #f8a974;
    margin-bottom: 1rem;
}
.command-list{
    color: #81b1da;
}
.command-input{
    margin: auto;
    font-size: 1.1em;
}
.command-input-label{
    color: white;
}
.command-input input{
    width: 40vh;
	  font-size: 1.1em;
    color: lawngreen;
    background: none;
    border: none;
    outline: none;
    caret-color: #f8ca74;
	  font-family: 'Source Code Pro', monospace;;
}
.command-result{
    color: rgb(200, 200, 200);
}
/* specific span class for red color  */
.red-color{
    color: #ff5555da;
}
.green-color{
    color: lawngreen;
}

@media screen and (max-width: 768px){
    body{
        font-size: 14px;
    }
    .terminal-content{
        height: 320px;
    }
}