@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
/*@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap')*/
@import url("https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap");
:root {
  --bs-body-font-family: Courier Prime, Courier, monospace;
  --bs-body-font-size: calc(1vmin + 14px);
  --bs-link-color: var(--bs-warning);
  --bs-body-color: rgb(206, 113, 6);
  --bs-link-color-rgb: var(--bs-warning-rgb);
  --bs-link-hover-color: #c8ab06ff;
  --bs-link-hover-color-rgb: 200, 171, 6;
}

html.placeholder {
  opacity: 1 !important;
}

body {
  margin: 0;
  padding: 0;
  background-color: rgb(56, 56, 56);
  background-image: linear-gradient(to right, #020202, rgb(56, 56, 56));
  background-image: -o-linear-gradient(to right, #020202, rgb(56, 56, 56));
  background-image: -moz-linear-gradient(to right, #020202, rgb(56, 56, 56));
  background-image: -webkit-linear-gradient(to right, #020202, rgb(56, 56, 56));
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Press Start 2P", sans-serif;
}

.main_page_div_style {
  width: 100%;
}

.page_content_style {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-content: center;
}

.article_style {
  margin-top: 2vmin;
  opacity: 1;
  width: 95%;
  align-self: center;
  justify-self: flex-start;
  font-size: var(--bs-body-font-size);
  font-family: var(--bs-body-font-family);
  text-shadow: 0 0 0.5px rgb(206, 113, 6);
}

.font_init {
  font-size: calc(0.5vmin + 12px);
  font-family: "Press Start 2P", sans-serif;
  color: transparent;
  text-shadow: 0 0 0.3px rgb(250, 205, 7);
}

.link_style {
  color: transparent;
  text-shadow: 0 0 1px rgb(250, 205, 7);
  text-decoration: underline;
}

.page_title_style {
  margin-top: 6vmin;
  left: 50%;
  height: 8vmin;
  z-index: 3;
  transform: translate(-50%);
  position: fixed;
  align-self: center;
  font-size: 4.5vmin;
  color: transparent;
  font-weight: 200;
  font-family: "Courier Prime", Courier, monospace;
  text-shadow: 0 0 1px rgb(206, 113, 6);
}

.navbar-element {
  font-family: "Press Start 2P", sans-serif;
  color: transparent;
  text-shadow: 0 0 0.5px rgb(206, 113, 6);
  font-size: calc(1vmin + 8px);
}

.navbar-brand-style {
  font-family: "Press Start 2P", sans-serif;
  color: transparent;
  text-shadow: 0 0 0.5px rgb(206, 113, 6);
  font-size: 27px;
  margin-right: 30px;
  font-weight: 700;
}

.active .nav-link {
  color: var(--bs-nav-link-hover-color) !important;
  pointer-events: none;
}

.terminal-element {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-self: center;
  background-color: rgba(24, 24, 24, 0.9);
  opacity: 1;
  overflow-y: auto;
  overflow-x: auto;
  pointer-events: all;
}
.terminal-element::-webkit-scrollbar {
  width: 8px;
}
.terminal-element::-webkit-scrollbar-track {
  box-shadow: inset 0 0 10000px rgb(46, 46, 46);
  border-radius: 0px;
}
.terminal-element::-webkit-scrollbar-thumb {
  background: grey;
  border-radius: 10px;
}
.terminal-element::-webkit-scrollbar-thumb:hover {
  background: white;
}

.terminal-handle {
  --label-border-radius: 0.5rem;
  display: flex;
  background-color: rgb(46, 46, 46);
  justify-content: space-between;
  align-items: center;
  top: 0;
  margin: 0;
  width: 100%;
  height: 38px;
  pointer-events: all;
}
.terminal-handle .terminal-label {
  background-color: black;
  display: flex;
  align-items: center;
  align-self: flex-end;
  margin-left: 10px;
  padding: 0.35rem 1rem 0.4rem;
  border-top-left-radius: var(--label-border-radius);
  border-top-right-radius: var(--label-border-radius);
  color: white;
  font-size: 0.8rem;
}
.terminal-handle .terminal-label img {
  margin-right: 0.875rem;
  max-height: 16px;
}

.terminal-skeleton {
  min-width: 200px;
  align-self: center;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: calc(100vh - 68px);
  transition: all 0.4s ease-in-out;
  position: relative;
}
.terminal-skeleton .icon-minimized {
  position: fixed;
  bottom: 20px;
  left: 20px;
  height: 32px;
  opacity: 0;
  pointer-events: none;
  background-color: black;
  display: flex;
  align-items: center;
  padding: 0 0.75rem 0.25rem;
  border-radius: 5px;
  color: white;
  font-size: 0.8rem;
  transition: opacity 0.3s ease-in-out;
}
.terminal-skeleton .icon-minimized img {
  margin-right: 0.875rem;
  max-height: 16px;
}
.terminal-skeleton .terminal {
  border: none;
  box-shadow: none;
}
.terminal-skeleton [data-control] {
  cursor: pointer;
}
.terminal-skeleton [data-control]:hover {
  color: rgb(206, 113, 6);
}
.terminal-skeleton [data-control=restore] {
  display: none;
}
.terminal-skeleton.terminal-full, .terminal-skeleton.terminal-minimized {
  transition: all 0.4s ease-in-out;
}
.terminal-skeleton.terminal-full [data-control=restore], .terminal-skeleton.terminal-minimized [data-control=restore] {
  display: block;
}
.terminal-skeleton.terminal-minimized .icon-minimized {
  opacity: 1;
  pointer-events: all;
}
.terminal-skeleton.terminal-minimized .terminal-handle {
  opacity: 0;
  pointer-events: none;
}
.terminal-skeleton.terminal-minimized .terminal-element {
  opacity: 0;
  pointer-events: none;
}
.terminal-skeleton.terminal-minimized .terminal {
  border: 0;
}
.terminal-skeleton:not(.terminal-full) {
  max-width: 1900px;
}
.terminal-skeleton.terminal-full [data-control=maximize] {
  display: none;
}
.terminal-skeleton.terminal-full .terminal {
  border: 0;
}
.terminal-skeleton .terminal {
  width: 100%;
  height: 100%;
  align-self: center;
  border: solid 1px black;
}

@media (min-width: 768px) {
  .terminal-element {
    height: calc(100% - 38px);
  }
  .terminal-skeleton:not(.terminal-full) {
    width: 85vw;
    height: calc(90vh - 70px);
  }
  .terminal-skeleton .terminal {
    box-shadow: rgb(0, 0, 0) 0px 5px 30px 10px;
  }
  .terminal-skeleton:not(.terminal-full) .terminal, .terminal-skeleton:not(.terminal-minimized) .terminal {
    box-shadow: none;
  }
}
.profile_image_style {
  align-self: center;
  height: calc(12vmin + 180px);
  width: auto;
}

.profile_div_style {
  display: flex;
  flex-direction: column;
  align-content: center;
  position: relative;
  width: 100%;
}

.profile_picture_div_style {
  display: flex;
  align-self: center;
  justify-self: center;
  align-content: center;
  background-image: linear-gradient(to right, #171717, #000000);
  border-radius: 2vmin;
  height: calc(1vmin + 180px);
  width: auto;
}

.profile_picture_frame_style {
  display: flex;
  align-self: center;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  background-image: linear-gradient(to right, #D97400, #D97400);
  border-radius: 2vmin;
  height: calc(1vmin + 190px);
  width: auto;
}

.name_div_style {
  margin-top: 1em;
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  justify-items: center;
  text-align: center;
}

.personal_bio_div_style {
  margin-top: 10vmin;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
  justify-items: center;
  align-self: center;
  width: 95%;
  height: 90vh;
  background-image: linear-gradient(to right, rgb(0, 0, 0), rgb(11, 11, 11));
}

.technologies_div_style {
  text-align: center;
  margin-top: 5vmin;
  display: flex;
  flex-direction: column;
  align-self: center;
  width: 100%;
}

.value_unit_style {
  display: flex;
  text-align: center;
  flex-direction: row;
  justify-content: flex-start;
  justify-items: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.technology_classifier_div_value_style {
  align-self: center;
  font-family: "Courier Prime", Courier, monospace;
  text-align: center;
  font-size: calc(1vmin + 20px);
  color: transparent;
  font-family: "Press Start 2P", sans-serif;
  text-shadow: 0 0 1px rgb(0, 0, 0);
  height: calc(1vmin + 30px);
  border-radius: 5vmin;
  align-self: flex-start;
  justify-self: flex-start;
  background-image: linear-gradient(to right, orange, orange);
  box-shadow: 0px 5px 10px 0px rgba(207, 16, 16, 0.5);
}

.technology_classifier_div_value_style_container {
  margin-right: calc(1vw + 10px);
  display: flex;
  align-self: center;
  justify-self: center;
  flex-direction: column;
  justify-content: flex-start;
  justify-items: flex-start;
}

.technology_classifier_value_style_tech_div {
  margin-right: calc(1vw + 10px);
  display: flex;
  align-self: center;
  justify-content: flex-end;
  justify-items: flex-end;
}

.profile {
  display: flex;
  flex-direction: column;
  align-self: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.name_style {
  align-self: center;
  justify-self: center;
  font-size: calc(2vmin + 15px);
  font-family: "Press Start 2P", sans-serif;
  font-weight: 700;
  color: transparent;
  text-shadow: 0 0 1px rgba(255, 136, 0, 0.9);
}

.technology_classifier_value_style {
  word-wrap: break-word;
  margin-top: 0px;
  margin-bottom: 0px;
  align-self: center;
  justify-self: center;
  font-size: calc(1vmin + 20px);
  font-family: "Press Start 2P", sans-serif;
  color: transparent;
  text-shadow: 0 0 1px rgb(255, 136, 0);
}

.technology_classifier_p_value_style {
  word-wrap: break-word;
  margin-top: 0px;
  margin-bottom: 0px;
  align-self: center;
  justify-self: center;
  font-size: calc(1vmin + 20px);
  font-family: "Press Start 2P", sans-serif;
  color: transparent;
  text-shadow: 0 0 1px rgb(247, 186, 54);
}

.technology_subtitle_style {
  margin-top: 10vmin;
  align-self: center;
  justify-self: center;
  font-size: calc(1vmin + 30px);
  font-family: "Press Start 2P", sans-serif;
  color: transparent;
  text-shadow: 0 0 1px rgb(255, 136, 0);
}

.mirrored-x {
  transform: scaleX(-1);
}

.barlume {
  opacity: 0.5;
  animation: barlume 6s infinite ease-in;
}

.bg-dark-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.bg-dark-30 {
  background-color: rgba(0, 0, 0, 0.3);
}

.bg-dark-40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-dark-60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.bg-gradient-circle {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}

@keyframes barlume {
  0% {
    opacity: 0.5;
  }
  98% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.9;
  }
}
[data-bg-slideshow] {
  --mb-bg-image: none;
  --bg-opacity: 1;
  --mb-bg-fadetime: 2000ms;
  position: relative;
}
[data-bg-slideshow] > * {
  position: relative;
  z-index: 1;
}
[data-bg-slideshow]::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  z-index: -1;
  background-image: var(--mb-bg-image);
  background-size: cover;
  background-position: center;
  opacity: var(--bg-opacity);
  transition: opacity var(--mb-bg-fadetime);
  pointer-events: none;
}

.loader {
  position: absolute;
  top: 38px;
  right: 0;
  width: 100%;
  bottom: 0;
  z-index: 1000000;
  background-color: rgba(24, 24, 24, 0.98);
}
.loader.fade {
  pointer-events: none;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.loading-spin::after {
  content: "";
  display: block;
  position: absolute;
  width: 6rem;
  height: 6rem;
  top: calc(50% - 3rem);
  left: calc(50% - 3rem);
  border: 3px solid #facd07;
  border-radius: 50%;
  border-left-color: rgba(250, 205, 7, 0.3);
  animation: 1.2s linear infinite spinner-border;
}

.spinner-hidden {
  display: none;
}

.loading .spinner-hidden {
  display: inline;
}

.article_style .col, .article_style .col-sm, .article_style .col-md, .article_style .col-lg, .article_style .col-xl, .article_style .col-xxl {
  min-width: 0;
}
.article_style .card {
  --bs-card-spacer-y: 1.5rem;
  --bs-card-spacer-x: 1.5rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: var(--bs-black);
  --bs-card-subtitle-color: var(--bs-black);
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-warning);
  --bs-card-border-radius: var(--bs-border-radius-xxl);
  --bs-card-box-shadow: none;
  --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-cap-color: var(--bs-black);
  --bs-card-color: var(--bs-dark);
  --bs-card-bg: var(--bs-warning);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: var(--bs-card-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  --bs-link-color: var(--bs-secondary);
  --bs-link-color-rgb: var(--bs-secondary-rgb);
  --bs-link-hover-color-rgb: var(--bs-tertiary-color-rgb);
  transition: all 0.3s ease;
}
@media (min-width: 576px) {
  .article_style .card {
    --mb-card-img-width: 200px;
  }
}
@media (min-width: 1200px) {
  .article_style .card {
    --mb-card-img-width: 250px;
  }
}
.article_style .card .card-img-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 576px) {
  .article_style .card .card-img-container {
    width: var(--mb-card-img-width);
  }
}
.article_style .card .card-img-container::after {
  content: "";
  display: block;
  padding-top: 75%;
}
@media (min-width: 576px) {
  .article_style .card .card-img-container::after {
    padding-top: 100%;
  }
}
.article_style .card .card-title {
  font-size: calc(1.5vmin + 10px);
}
.article_style .card .card-title a {
  --bs-link-color: var(--bs-dark);
  --bs-link-color-rgb: var(--bs-dark-rgb);
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
}
.article_style .card .card-title a:hover {
  color: var(--bs-gray-700);
  text-decoration: underline !important;
}
.article_style .card .card-body-collapsed {
  position: relative;
}
@media (min-width: 576px) {
  .article_style .card .card-body-collapsed {
    height: var(--mb-card-img-width);
    overflow: hidden;
  }
  .article_style .card .card-body-collapsed img {
    display: none;
  }
  .article_style .card .card-body-collapsed.show-full {
    height: auto;
  }
  .article_style .card .card-body-collapsed.show-full img {
    display: initial;
  }
}
.article_style .card .card-body-collapsed img {
  max-width: 100%;
  height: auto;
}
.article_style .card .card-body-collapsed .card-collapse-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 3rem;
}
.article_style .card .card-body-collapsed .card-collapse-footer .card-footer-gradient {
  height: 2rem;
  background: linear-gradient(to top, var(--bs-warning), rgba(255, 255, 255, 0));
}
.article_style .card .card-body-collapsed .card-collapse-footer .card-footer-content {
  background-color: var(--bs-warning);
}
.article_style .card .card-body-collapsed .card-collapse-footer .show-more-btn {
  background: none;
  border: none;
  color: var(--bs-dark);
  font-weight: bold;
  cursor: pointer;
}
.article_style .card .card-body-collapsed .card-collapse-footer .show-more-btn:hover {
  text-decoration: underline;
}

@media (min-width: 576px) {
  .text-truncate-sm {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
  .text-truncate-md {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (min-width: 992px) {
  .text-truncate-lg {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (min-width: 1200px) {
  .text-truncate-xl {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (min-width: 1400px) {
  .text-truncate-xxl {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.scroll-to-top-button {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  background-color: #343a40;
  color: #fff;
  border: 1px #f8f9fa solid;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1;
  padding: 0.25rem;
  /*  &:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba($primary-color, 0.5);
  }*/
}
.scroll-to-top-button:hover {
  background-color: #000;
  border: 1px #e9ecef solid;
}
.scroll-to-top-button .icon {
  font-size: 1.5rem;
}

.read-me-md h1, .read-me-md h2, .read-me-md h3, .read-me-md h4, .read-me-md h5, .read-me-md h6, .read-me-md .h1, .read-me-md .h2, .read-me-md .h3, .read-me-md .h4, .read-me-md .h5, .read-me-md .h6 {
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.2;
  font-family: "Courier Prime", Courier, monospace;
}
.read-me-md table {
  caption-side: bottom;
  border-collapse: collapse;
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-accent-bg: transparent;
  width: 100%;
  margin-bottom: 1rem;
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: #4d5154;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.read-me-md table code {
  color: var(--bs-info);
  white-space: nowrap !important;
  background-color: var(--bs-black) !important;
}
.read-me-md table > thead {
  vertical-align: bottom;
}
.read-me-md table > tbody {
  vertical-align: inherit;
}
.read-me-md table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}

/*# sourceMappingURL=custom.css.map */
