body {
    background-image: radial-gradient(
            circle,
            rgba(246, 246, 246, 0.5),
            #fff
    );
    margin:0;
    --border-radius:5px;
}

console {
    margin: auto;

    --console-border-radius: 4px;
    --console-color-green: rgb(53, 205, 75);
    --console-color-yellow: rgb(253, 188, 64);
    --console-color-red: rgb(252, 99, 94);
    --console-color-text: rgb(199, 199, 199);
    --console-default-margin: 3px;
    --console-existing-item: lightseagreen;
    display: block;
    width: 60%;
    min-width: 500px;

    font-family: Monaco, monospace;
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -40%);

}

console > header {
    box-sizing: border-box;
    background-color: rgb(246, 246, 246);
    height: 23px;
    width: 100%;
    display: block;
    border-top-left-radius: var(--console-border-radius);
    border-top-right-radius: var(--console-border-radius);
    border: 1px solid rgba(178, 178, 178, 0.5);
}

console > header, .title {
    text-align: center;
    color: black;
    font-family: sans-serif;
    font-size: 14px;
    vertical-align: middle;
}

.login-message{
    margin-left: var(--console-default-margin);
    margin-top: var(--console-default-margin);
    color: var(--console-color-text);

}

.circle {
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.window-command-block {
    display: block;
    margin-left: 7px;
}

.window-command-block > .entry {
    display: block;
    float: left;
    margin: 5px;
}

.minimize {
    background-color: rgb(253, 188, 64);

}

.maximize {
    background-color: rgb(53, 205, 75);
}

.close {
    background-color: rgb(252, 99, 94);
}

console > screen {
    background: #000;
    color: #fff;
    font-size: 12px;
    overflow-y: scroll;
    display: block;
    height: 100%;
    border-bottom-left-radius: var(--console-border-radius);
    border-bottom-right-radius: var(--console-border-radius);
}

.command-blocks {
    margin-left: 7px;
    margin-right: 7px;
    margin-bottom: 10px;
}

.command-block > .working-directory {
    float: left;
    margin-right: 5px;
}

.command-block {
    margin-left: 3px;
}

.command-block > .command {
    color: var(--console-existing-item);
    margin-left: 3px;
}

.command-block > .command > .cursor {
    color: var(--console-color-text);
    width: 2px;
    background-color: var(--console-color-text);;
}

.command-block > .command-result {
    color: var(--console-color-text);
}

a.no-style{
    color: var(--console-existing-item);
}

.indent-2{
    margin-left: 8px;
    display: block;
}
.indent-4{
    margin-left: 16px;
    display: block;
}


.git-add {
    margin-left: 50px;
    color: rgb(0, 168, 28);
}

.path {
    color: rgb(99, 110, 204);
}

.path-arrow-red {
    color: var(--console-color-red);
}

.path-arrow-green {
    color: var(--console-color-green);
}

.path-arrow-yellow {
    color: var(--console-color-yellow);
}

.social-media-presence {
    position: fixed;
    top: 40%;
}

.linky {
    width: 32px;
    height: 32px;
    text-align: center;
    background-color: black;
    color: white;
    display: block;
    font-size: 26px;
    border-radius: 5px;
    text-decoration: none;
    margin: 6px;
    font-family: monospace;
}

.github {
    margin: 6px;
}

/*
    Grow from https://ianlunn.github.io/Hover/
*/
.hvr-grow {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    transition-duration: 0.3s;
    transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
    transform: scale(1.1);
}

.apple-shadow{
    background: #f5f5f5;
    border-radius: 5px;
    box-shadow: 1px 2px 4px rgba(0,0,0,.4);
    box-sizing: border-box;
}

.blink {
  animation: blinky 2s step-start infinite;
}

@keyframes blinky {
  50% {
    opacity: 0;
  }
}