:root {
    --10: #f3f8f7;
    --9: #e1ecea;
    --8: #c5dcd8;
    --7: #6ea29a;
    --6: #002a36;
    --5: #002a36;
    --4: #07171c;
    --3: #061317;
    --2: #040e11;
    --1: #020709;
    --0: #000000;
}

@font-face {
    font-family: 'JetBrainsMono';
    src: url('../fonts/JetBrainsMono-VariableFont_wght.ttf') format('truetype');
}

* {
    text-decoration: none !important;
    transition: 0.3s;
}

html body {
    background-color: var(--2);
    color: var(--7);
    /* overflow-x: hidden !important; */
}

.navbar, footer {
    background-color: var(--4) !important;
}

.navbar-brand, .nav-link {
    color: var(--7) !important;
    font-family: 'JetBrainsMono', monospace;
    font-optical-sizing: auto;
    font-style: normal;
}

.blinking-beam {
    font-family: monospace;
    cursor: default;
    user-select: none;
    animation: blinker 1s linear infinite;
  }
  
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }

h2 {
    font-weight: bold !important;
    cursor: default;
    user-select: none;
}

p a,.url {
    text-decoration: none;
    color: unset;
}

a {
    transition: 0.3s;
}

.text-muted-c {
  color: var(--6) !important;
}

.color-invert {
    -webkit-filter: invert(1);
    filter: invert(1);
}

::selection {
    color: var(--3);
    background-color: var(--8);
}


a:active, a:hover {
    color: var(--8) !important;
    transition: 0.3s !important;
}

.nav-link:hover {
    background-color: var(--2) !important;
}

.jumbotron {
    background-color: var(--1);
    height: 25em;
    background-position: center;
    background-image: url(../images/jumbotron.svg);
    background-repeat: repeat;
    animation: animate-jumbotron-bg 100s infinite;
}

.lang-and-tools {
    font-size: 3em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    user-select: none;
    overflow-x: hidden !important;
}

.text-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .text-container h1{
    font-family: "JetBrainsMono", monospace;
    font-size: 2em;
    /* text-align: center; */
    /* font-weight: 900; */
    cursor: default;
    user-select: none;
  }

  @keyframes animate-jumbotron-bg {
    0%, 100%{
      background-position: left;
    }
    50% {
      background-position: right;
    }
    70% {
      background-position: left bottom;
    }   
}

.img-responsive {
    width: 9em;
    max-width: 100%;
    user-select: none;
}

.img-ratio-16-9 {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card-bg-dark {
    background-color: var(--4) !important;
    background-image: url(../images/acc-bg.svg);
    color: var(--7) !important;
    animation: animate-card-bg 100s infinite;
}

@keyframes animate-card-bg {
    0%, 100%{
      background-position: left;
    }
    40% {
      background-position: right;
    }
    90% {
      background-position: left bottom;
    }   
}

#education .card:hover {
    scale: 1.2;
    transition: 0.5s;
}


section:target {
  border-radius: 8px;
  animation: targeted 5s;
}

@keyframes targeted {
  0%, 100%{
    background-color: transparent;
  }
  50%{
    background-color: var(--4);
  }
}