.profile-img {
    border-radius: 50%;
    width: 25%;
    height: auto;
}

body {
    font-family: 'JetBrains Mono', monospace;    
    font-size: calc(13px + 0.390625vw);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    
}

h1 {
    font-size: 3vw;
    font-weight: 800;
}

.socials {
    font-size: 4vw;
    text-decoration: none;    
}

a, li.nav-item > a {
    color: black;
    text-decoration: none;
    transition: color 0.3s linear;
    -webkit-transition: color 0.3s linear;
    -moz-transition: color 0.3s linear;
}

a:hover, li.nav-item > a:hover {
    color: #666666;
 }

.card-title {
    font-weight: 200;
    font-size: calc(9px + 0.390625vw)
}

.tech-stack{
    height: 30px;
    width: 30px;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    margin-top: 0.50rem;
    margin-bottom: 0.50rem;
}

.conference {
    text-transform: uppercase;
}

.citation, .project-desc {
    color: #666666;
    font-weight: 200;
}

.card-img-top {
    width: 100%;
    height: 13vw;
    object-fit: cover;
}

.card:hover {
    cursor: pointer;
}

.modal-project-img {
    object-fit: cover;
    width: 18rem;
    height: 18rem;
}

.modal-title {
    text-transform: uppercase;
}

.modal-body {
    max-height: 60vh;
}

.experience-list {
    font-size: medium;
}

.experience-list > li{
    margin-top: 1rem;
}

/* HOVER SHADOW */
.hover-shadow {
    transition: box-shadow .3s;
    margin: 50px;
    border-radius:10px;
    border: 1px solid #ccc;
    background: #fff;
    float: left;
    
  }
  .hover-shadow:hover {
    box-shadow: 0 0 11px rgba(33,33,33,.2); 
  }


/* HOVER ON BG */
.hover-bg {
    border-radius: 15px;
    background-color: #ffffff;
    -webkit-transition: 
        background-color 300ms linear, 
        color 300ms linear;            
}

.hover-bg-no-round {
    background-color: #ffffff;
    -webkit-transition: 
        background-color 300ms linear, 
        color 300ms linear;            
}
  
  .hover-bg:hover, .hover-bg-no-round:hover { 
    background-color: #f3f3f3;
      }


/* HOVER EFFECT */
.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: black;
}

.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: black;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
  
.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

  /*TYPING EFFECT*/
.typing-demo {
    width: 33ch;
    animation: typing 5s steps(33), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 15px solid;
}

@keyframes typing {
    from {
        width: 0;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/*FADE IN*/
.fade-in {
    animation: fadeIn ease 1.5s;
    -webkit-animation: fadeIn ease 1.5s;
    -moz-animation: fadeIn ease 1.5s;
    -o-animation: fadeIn ease 1.5s;
    -ms-animation: fadeIn ease 1.5s;
  }
  
  
  @keyframes fadeIn{
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-moz-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-webkit-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-o-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-ms-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }