/* FILEPATH: /k:/Projects/Portfolio Website/style.css */

  
body {
    background-color: rgb(16, 15, 22);
    color: white;
}
::-moz-selection { /* Code for Firefox */
    background: rgb(229, 229, 229);
  }
  
  ::selection {
    background: rgb(229, 229, 229);
  }
h1, h2, h3, h4, h5, h6 {
    color: #00ff00;
}
span {
    display: block;
}
p {
    color: #ffffff;
    display: inline;
}
a {
     color: #a9a8a8;
    text-decoration: none;
}
a:hover {
    background-color: #ffffff2b;
    text-decoration: underline;
}

.console {
    color: #a9a8a8;
    padding: 0px;
    margin: 2px;
    font-family: "Inconsolata", monospace;
    font-size: 20px;
    font-weight: 500;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 250;
    


}

.console .error {
    color: #ff0000;
}

.console .warning {
    color: #ffff00;
}

.console .success {
    color: #00ff00;
}
.console .info {
    color: inherit;
    
}
.console .line {
    width: 100%;
    display: flex;
}
.console .inputLine {
    margin-top: 3px;
}
.console p, .console pre {
    color: inherit;
    margin: inherit;
    padding-right: 6px;
    display: block;
}

.console input {
    border: none;
    margin: inherit;
    padding: 0px;
    background-color: transparent;
    flex-grow: 1;
    outline: none;
    
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    font-optical-sizing: auto;
    font-weight: normal;
    font-variation-settings:
        "wdth" 125;
}
