@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap");
@keyframes blinkingCursor {
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes glitch {
  0% {
    text-transform: none;
    text-decoration: none;
  }
  70% {
    text-decoration: line-through;
    font-weight: 100;
  }
  75% {
    text-decoration: underline;
    font-style: italic;
  }
  80% {
    text-transform: uppercase;
    text-decoration: line-through;
    font-weight: 900;
  }
  85% {
    text-transform: lowercase;
    text-decoration: overline;
    font-weight: 300;
    font-style: normal;
  }
  90% {
    text-transform: capitalize;
    text-decoration: underline dotted;
    font-weight: 600;
  }
  95% {
    text-transform: uppercase;
    text-decoration: line-through dashed;
    font-style: italic;
    font-weight: 200;
  }
  100% {
    text-transform: none;
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
  }
}
.matrix:hover {
  animation: glitch 1.5s steps(1, end) infinite;
}

.navigation-bar {
  z-index: 999;
  display: flex;
  flex-direction: row;
  position: fixed;
  top: 0;
  place-self: center;
  place-content: center;
  width: 100%;
  background-color: #221f21;
}
.navigation-bar .navigation-links {
  height: 100%;
  display: flex;
  list-style-type: none;
  place-content: center;
  align-items: center;
  text-align: center;
  padding-inline-start: 0;
  padding-inline-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  background-color: #221f21;
}
.navigation-bar .navigation-links .navigation-link {
  display: flex;
}
.navigation-bar .navigation-links .navigation-link a {
  color: #00FF41;
  text-transform: uppercase;
  padding-top: 1rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
}
.navigation-bar .navigation-links .navigation-link a::after {
  display: inline-block;
  content: " ";
  width: 8px;
  height: 2px;
  border-top: 1px;
  border-right: 1px;
  border-bottom: 1px;
  border-right: 1px;
  border-style: solid;
  border-color: #221f21;
  background-color: #221f21;
  opacity: 0;
  animation: blinkingCursor 0.5s steps(1, end) infinite;
}
.navigation-bar .navigation-links .navigation-link.selected {
  background-color: #008F08;
}
.navigation-bar .navigation-links .navigation-link.selected:hover {
  background-color: #00FF41;
}
.navigation-bar .navigation-links .navigation-link.selected a {
  color: #221f21;
}
.navigation-bar .navigation-links .navigation-link:hover {
  background-color: #00FF41;
}
.navigation-bar .navigation-links .navigation-link:hover a {
  color: #221f21;
}

@media screen and (max-width: 768px) {
  .navigation-bar {
    display: none;
  }
}
.article {
  scroll-margin-bottom: 25vh;
  scroll-padding-top: -1rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 80%;
  place-self: center;
  place-content: center;
  align-items: center;
}
.article p {
  display: inline-block;
  overflow: hidden;
  text-align: center;
  font-size: 1rem;
}

.container {
  height: 100vh;
  margin-left: 8rem;
  margin-bottom: 8rem;
  margin-top: 8rem;
  padding-top: 25rem;
  scroll-margin-top: 1vh;
  scroll-padding-top: -1rem;
}

.contact-email, .contact-linkedin {
  color: #008F08;
}

@media screen and (max-width: 768px) {
  .container {
    margin-left: 4rem;
    margin-bottom: 8rem;
    padding-top: 18rem;
  }
  .article {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 1124px) {
  .container {
    margin-left: 2rem;
    margin-bottom: 8rem;
    padding-top: 18rem;
  }
}
.badges .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0.5rem;
  color: #008F08;
  font-size: 2rem;
}
.badges .badge i:hover {
  color: #00FF41;
}
.badges .badge .badge-tooltip {
  background-color: #221f21;
  color: #00FF41;
  text-align: center;
  text-wrap: nowrap;
  font-size: medium;
  position: absolute;
  min-width: 100px;
  display: none;
  bottom: 3.5rem;
  border: 2px solid #00FF41;
  padding: 10px;
}
.badges .badge:hover .badge-tooltip {
  display: block;
}

@media screen and (max-width: 768px) {
  .badges {
    text-wrap: balance;
    text-align: center;
  }
  .badges a {
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .badges .badge .badge-tooltip {
    text-wrap: wrap;
  }
}
.card-social {
  margin-left: 4rem;
  margin-right: 4rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
  width: 33.3%;
  place-content: center;
  align-items: center;
  text-align: center;
}
.card-icon {
  font-size: 15rem;
}
.card-title {
  font-size: 1rem;
  margin-bottom: 25px;
}
.card-button {
  width: 100%;
  border-top: 1px;
  border-right: 1px;
  border-bottom: 1px;
  border-left: 1px;
  border-style: solid;
  border-color: #00FF41;
  color: #00FF41;
  padding-top: 15px;
  padding-right: 75px;
  padding-bottom: 15px;
  padding-left: 75px;
}

@media screen and (max-width: 768px) {
  .card-icon {
    font-size: 4rem;
  }
  .card-social {
    width: 100%;
  }
  .card-button {
    padding-left: 75px;
    padding-right: 75px;
  }
}
@media screen and (max-width: 1124px) {
  .card-social {
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .card-icon {
    font-size: 8rem;
  }
  .card-button {
    padding-left: 55px;
    padding-right: 55px;
  }
}
@media screen and (max-width: 1200px) {
  .card-button {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.title {
  color: #00FF41;
  font-size: 2rem;
  margin-block-start: 0;
  margin-block-end: 0;
}

.subtitle:hover::before {
  opacity: 0;
  content: "> ";
  animation: blinkingCursor 1s steps(1, end) infinite;
}
.subtitle:hover::after {
  opacity: 0;
  content: " <";
  animation: blinkingCursor 1s steps(1, end) infinite;
}

.name-title {
  color: #00FF41;
  font-size: 5rem;
  margin-block-start: 0;
  margin-block-end: 0;
}

.expertise-title {
  color: #008F08;
  font-size: 3rem;
  margin-block-start: 0;
  margin-block-end: 2rem;
}

.title-links {
  display: inline-block;
}
.title-links a {
  display: inline-block;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
  .name-title {
    font-size: 3rem;
  }
  .expertise-title {
    font-size: 1.5rem;
  }
}
.footer {
  display: flex;
  flex-direction: row;
  place-self: center;
  place-content: center;
  width: 100%;
}
.footer .container {
  display: inherit;
  width: 50%;
  height: inherit;
  flex-direction: column;
  place-content: center;
  align-items: center;
  margin-left: 0rem;
  margin-bottom: 0rem;
  padding-top: 8rem;
}

@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
  }
  .footer .container {
    width: 100%;
    padding-top: 0rem;
    margin-top: 0rem;
  }
}
.projects {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 3rem;
  width: 100%;
}

.project {
  display: flex;
  padding-left: 15px;
  padding-right: 15px;
  border: 1px solid #00FF41;
}
.project-image {
  width: 50%;
}
.project-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 15px;
}
.project-footer {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.project-footer .link-col {
  display: flex;
  flex-direction: column;
}
.project-tech {
  align-content: center;
  justify-content: center;
}
.project-title {
  width: 100%;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.project p {
  width: 100%;
  text-align: start;
  padding-right: 15px;
}
.project-link {
  border-top: 1px;
  border-right: 1px;
  border-bottom: 1px;
  border-left: 1px;
  border-style: solid;
  border-color: #003B00;
  color: #221f21;
  background-color: #008F08;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  margin: 15px;
  text-wrap: nowrap;
}
.project:hover .project-title {
  background-color: #00FF41;
  color: #221f21;
}
.project:hover .project-title:hover::after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 2px;
  border-top: 1px;
  border-right: 1px;
  border-bottom: 1px;
  border-right: 1px;
  border-style: solid;
  border-color: #221f21;
  background-color: #221f21;
  opacity: 0;
  animation: blinkingCursor 0.5s steps(1, end) infinite;
}

@media screen and (max-width: 1124px) {
  .projects {
    display: flex;
    flex-direction: column;
  }
  .projects-footer {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .project-footer {
    display: flex;
    flex-direction: column-reverse;
  }
  .project-tech {
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  .project-link {
    text-align: center;
  }
  .link-row {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
}
:root {
  font-family: "Jetbrains Mono", monospace;
  background-color: #221f21;
  color: #00FF41;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
}

canvas {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: black;
}

a {
  text-decoration: none;
  color: #008F08;
  padding-left: 5px;
  padding-right: 5px;
}
a:hover {
  color: #221f21;
  background-color: #00FF41;
}

.row {
  display: flex;
  flex-direction: row;
  place-self: center;
  place-content: center;
}

@media screen and (max-width: 768px) {
  .row {
    flex-direction: column;
    align-items: center;
  }
}/*# sourceMappingURL=base.css.map */