@font-face {
    font-family: "Source Code Pro";
    src: url("./assets/SourceCodePro/SourceCodePro-Regular.ttf");
}

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    background-color: #1e2229;
    color: #fafbfc;
    font-family: "Source Code Pro";
    font-size: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    margin: 20px;
    padding-bottom: 60px;
    overflow-y: auto;
    position: relative;
}

.terminal {
    position: sticky;
    bottom: 0;
    background-color: #1e2229;
    padding: 10px 0;
    width: 100%;
    border-top: 1px solid #2a2e36;
}

input {
    border: none;
    outline: none;
    background-color: #1e2229;
    color: #fafbfc;
    font-family: "Source Code Pro";
    font-size: 100%;
    width: 83%;
    margin: 0px 0px 0px 9.5px;
    padding: 0px;
}

.flexbox {
    display: flex;
    align-items: center;
}

#logo {
    font-size: 12px;
    margin-bottom: 20px;
    white-space: pre;
    overflow-x: auto;
    max-width: 100%;
    -webkit-text-size-adjust: none;
    padding: 10px 0;
}

.output {
    margin: 10px 0;
}

.cmd-line {
    margin-top: 5px;
    margin-left: 20px;
}

.nospace {
    display: inline-block;
    margin-right: 0px;
}

.space {
    display: inline-block;
    margin-left: 9.5px;
}

.light-dark {
    color: #f5eeec;
}

.green {
    color: #2fbb4f;
}

.light-dark {
    color: #d3d3d3;
}

.purple {
    color: #b026ff;
}

a {
    color: #0d74e7;
    text-decoration: none;
}

li {
    list-style-type: none;
}

@media only screen and (max-width: 768px) {
    .container {
        margin: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .container {
        margin: 5px;
    }
}