@import url("https://fonts.googleapis.com/css2?family=Inconsolata&display=swap");

:root {
  --cursor-visibility: hidden;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: auto;
  font-family: "Inconsolata", monospace;
  font-size: 4vmin;
  line-height: 4.1vmin;
  font-weight: normal;
}

body {
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#content {
  min-width: 82vmin;
  min-height: 82vmin;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 1px white;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: 0 0 0 1px white;
}

.cursor,
#cd:after,
#whoami:after,
#catprofile:after,
#catskill:after,
#catcontact:after,
#certificatetree:after,
#projecttree:after,
#activity-title:after,
#activity-content:after {
  visibility: var(--cursor-visibility);
  content: "|";
  overflow: hidden;
  color: white;
  animation: blink 500ms linear infinite alternate;
}

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

  100% {
    opacity: 1;
  }
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 2.5vmin;
    line-height: 2.6vmin;
  }

  #content {
    min-width: 60vmin;
  }
}

body {
  background: #1b1d1e
}

body #terminal {
  color: #BBBBBB
}

body #user {
  color: #23E298
}

body #dir {
  color: #D08010
}

body .Typewriter__cursor {
  color: #BBBBBB
}

a {
  color: #BBBBBB
}

.navFull {
  background-color: #353535;
  font-family: "Courier New";
  font-size: 17px;
  display: inline;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding-top: 5px;
  padding: 10px;
  padding-bottom: 0px;
}

.navCredits {
  float: right;
  padding-right: 18px;
  padding-bottom: 10px;
  padding-top: 5px;
}

#content::after {
  content: "\a\a";
  white-space: pre;
}
