* {
    font-family: monospace;
    font-size: 1.4rem;
    color: #d3d7cf;
}

a, i{
    text-decoration: none;
    font-weight: bold;
    color: #4e9a06;
}

body {
    background: #000;
}

#root-section {
    margin: 10px;
}

#about-portfolio {
    position: absolute;
    bottom: 0;
    left: 0;
}

#cr {
    position: absolute;
    bottom: 0;
    right: 0;
}

.bash-green {
    color: #4e9a06;
}

.bash-blue {
    color: #729fcf;
}

.bash-black {
    background: #d3d7cf;
    color: #000000;
}

.typed {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typing;
    animation-duration: 1.0s;
    animation-timing-function: steps(30, end);
    animation-fill-mode: forwards;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}