@font-face {
  font-family: jetbrains;
  src: url(JetBrainsMonoNL-Bold.ttf);
}

body {
    background-color: rgb(10,10,10);
    color: green;
    font-size: 15px;
    font-family: jetbrains;
}

h1 {
    font-family: jetbrains;
}

.container {
    background-color: rgb(10,10,10);
    display: block;
}

.nav {
    position: sticky;
    top: 0;
    padding: 1rem;
    background-color: rgb(10,10,10);
}


.prompt::before {
    content: "user@zrg> ";
    color: gray;
}

.prompt::after {
    animation: cursor 800ms infinite;
    content: "⏎";
    display: inline-block;
    height: 1em;
    bottom: -2px;
}

.entry {
    margin: auto;
    max-width: 60em;
    margin-bottom: 1rem;
}

@keyframes cursor {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.cd::before {
    content: "user@zrg> cd ";
    color: gray;
}

a {
    text-decoration: none;
    color: gray;
    background-color: rgb(20,20,20);
}

a:hover {
    color: darkred;
    
}

h2 {
    overflow: hidden;
    border-bottom: 2px green dashed;
}

img {
    width: 100%;
}