a {
    cursor: pointer;
}

h3 a {
    text-decoration: none;
}

.yellow {
    color: #ffc107;
}

.yellow-glow {
    color: #ffc107;
    text-shadow: 0px 0px 6px rgba(255, 193, 7, 0.75);
    animation: shadow-drop-center 3s ease-in-out infinite alternate-reverse both;
}

.purple {
    color: #A370F7;
}

.blue {
    color: #3D8BFD;
}

.green {
    color: #479F76;
}

#recentProjects {
    background: linear-gradient(109deg, #FFC107 4.02%, #FFF507 112.95%);
}

#navbar {
    background-color: #1A1E21;
    width: 100%;
    height: 100%;
}

#skills {
    background-color: #1A1E21;
}

.dark-bg {
    background-color: #1A1E21;
}

.semiDark-bg {
    background-color: #343a40;
}

#work {
    color: #ffffff;
}

#work:hover {
    color: #ffc107;
    transition: 0.3s ease-in-out;
}

.container {
    -webkit-perspective: 1000px;
            perspective: 1000px;
    transform-style: preserve-3d;
}

#hero {
    transition: all .5s ease;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin-y: 300px; /* rotates from the bottom of the image */
}

#hero:hover {
    -webkit-transform: rotateY(-20deg);
    transform: rotateY(-20deg)

}

li {
    line-height: 2rem;
}

code {
    color: #A370F7;
}

.nounderline {
    text-decoration: none !important
  }

.active {
    color: #ffc107 !important;
}

.nav-link {
    color: #ffffff;
}

.nav-link:hover {
    color: #FFC107;
    text-shadow: 0px 0px 6px rgba(255, 193, 7, 0.75);
    transition: 0.3s ease-in-out;
}

  @keyframes shadow-drop-center {
    0% {
            text-shadow: 0 0 20px rgba(255, 193, 7, 0);
    }
    100% {
            text-shadow: 0 0 20px rgba(255, 193, 7, 0.75);
    }
  }