  :root {
    --keyword-color: #ab65a7;
    --datatype-color: #f0ce89;
    --declaration-color: #87c7d9;
    --comment-color: #808080;
    --background-color: #2b2b2b;
    --text-color: #a9b7c6;
  }

  body {
    font-family: "Exo", sans-serif;
  }

  .darcula {
    font-family: monospace;
    background-color: var(--background-color);
    color: var(--text-color);
  }

  .jumbotron {
    height: 100vh;
  }

  .keyword {
    color: var(--keyword-color);
  }

  .datatype {
    color: var(--datatype-color);
  }

  .declaration {
    color: var(--declaration-color);
  }
  
  .comment {
    color: var(--comment-color);
    font-style: italic;
  }

  .navbar {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
  }

  .nav-link {
    margin: 0.2em;
    font-weight: bolder;
  }

  a.nav-item.nav-link {
    /* color: #a6b38e !important; */
    font-size: 1.5em;
  }

  .darknav {
    background: var(--background-color);
    color: var(--text-color);
  }

  #welcome {
    display: flex;
    align-items: center;
    padding: 0 1.8em;
  }

  .typewriter {
    font-family: monospace;
  }

  .typewriter p {
    display: inline-block;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: 0.15em solid orange; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: 0.2em; /* Adjust as needed */
    -webkit-animation: typing 3.5s steps(40, end),
      blink-caret 0.75s step-end infinite;
    animation: typing 3.5s steps(40, end),
      blink-caret 0.75s step-end infinite;
  }

  /* The typing effect */
  @-webkit-keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }

  /* The typewriter cursor effect */
  @-webkit-keyframes blink-caret {
    from,
    to {
      border-color: transparent;
    }
    50% {
      border-color: #b889e2;
    }
  }
  @keyframes blink-caret {
    from,
    to {
      border-color: transparent;
    }
    50% {
      border-color: #b889e2;
    }
  }

  .card {
    width: 15em;
    margin: 1em 1em 1em 1em;
  }

  /* Style all font awesome icons */
  .fab {
    padding: 0.5em;
    font-size: 30px;
    text-align: center;

    text-decoration: none;
  }

  /* Add a hover effect if you want */
  .fab:focus {
    opacity: 0.7;
    color: black;
  }

  .fa-free-code-camp {
    background: #006400;
    color: white;
  }

  .fa-twitter {
    background: #55acee;
    color: white;
  }

  .fa-github {
    background: #333;
    color: white;
  }

  .contact {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  @media only screen and (max-width: 600px) {
    .typewriter h1 {
      font-size: 2em;
    }
    .typewriter p {
      font-size: 1em;
    }

    .card {
      width: auto;
      margin: 1em 1em 1em 1em;
    }
  }