body {
    background-color: #16161a;
    color: #ddd;
}

#terminalContent {
    font: 1em Consolas, monaco, monospace;
    top: 5em;
    bottom: 6em;
}

.container {
    width: 90%;
    max-width: 900px;
    position: fixed;
}

#terminalHeader {
    height: 1.75em;
    background-color: #ddd;
    border-radius: 20px 20px 0 0;
}

#headerName {
    position: absolute;
    border-radius: 10px;
    width: 40%;
    height: 15px;
    margin: 8px 5px 0 20px;
    display: inline-block;
    vertical-align: middle;
    background-color: white;
}

.button {
    border-radius: 50%;
    width: 15px;
    height: 15px;
    margin: 8px 5px 0 0;
    display: inline-block;
    vertical-align: middle;
}

.buttonRed {
    margin-left: 20px;
    background-color: #ff6464;
    transition: 0.2s ease-in-out;
} .buttonRed:hover { background-color: #860000;}

.buttonGreen {
    background-color: #64ff64;
    transition: 0.2s ease-in-out;
} .buttonGreen:hover {background-color: #008600;}

.buttonYellow {
    background-color: #ffff64;
    transition: 0.2s ease-in-out;
} .buttonYellow:hover {background-color: #868600;}

#githubIcon {
    float: right;
    color: black;
    transform: scale(1.3,1.3);
    margin-right: 25px;
    transition: 0.2s ease-in-out;
}
#githubIcon:hover {
    transform: scale(1.5, 1.5);
}

#terminalBody {
    padding: 2% 5% 0 2%;
    background-color: #242629;
    height: 30em;
    border-radius: 0 0 20px 20px;
    overflow-y: auto;
    border: solid 5px #ddd;
}

#BodyContent {
    float: left;
}

input {
    width: 30%;
    background-color: #242629;
    border-width: 0;
    color: #ddd;
    font: 1em Consolas, monaco, monospace;
    font-weight: 700;
}
input:focus {
    outline: none;
}

a {
    color: #0dd;
    transition: 0.2s ease-in-out;
}
a:hover {
    color: #EF4F4F;
}

