* {
    margin: 0;
    padding: 0;
}

body {
    background: #353535;
}

.terminal {
    width: 500px;
}

.terminal .body {
    height: 300px;
}

@media (max-width: 550px) {
    .terminal {
        width: 310px;
    }
}

@media (max-height: 350px) {
    .terminal .body {
        height: 150px;
    }
}

#terminal_container {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.terminal {
    border-radius: 5px 5px 0 0;
    position: relative;
}

.terminal .top {
    background: #E8E6E8;
    color: black;
    padding: 5px;
    border-radius: 5px 5px 0 0;
}

.terminal .btns {
    position: absolute;
    top: 7px;
    left: 5px;
}

.terminal .circle {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 15px;
    margin-left: 2px;
    border-width: 1px;
    border-style: solid;
}

.title {
    text-align: center;
}

.red {
    background: #EC6A5F;
    border-color: #D04E42;
}

.green {
    background: #64CC57;
    border-color: #4EA73B;
}

.yellow {
    background: #F5C04F;
    border-color: #D6A13D;
}

.clear {
    clear: both;
}

.terminal .body {
    font-family: monospace;
    background: black;
    color: #ffffff;
    padding: 8px;
    overflow: auto;
}

.terminal .body .prompt {
    color: #52cadc;
    font-weight: bold;
}

.terminal .body .error {
    color: #ff0000;
    font-weight: bold;
}

.space {
    margin: 25px;
}

.shadow {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .4)
}