.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 1.4s;
    animation-fill-mode: both;

    @keyframes fadeInDown {
        0% {
            opacity: 0;
            transform: translate3d(0, -100%, 0);
        }
        100% {
            opacity: 1;
            transform: none;
        }
    }
}
.fadeInLeft {
    animation-name: fadeInLeft;
    animation-duration: 2s;
    animation-fill-mode: both;

    @keyframes fadeInLeft {
      0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
      }
      100% {
        opacity: 1;
        transform: none;
      }
    }
}

a {
  text-decoration: none;
  color: #007bff;
}
.card {
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: #fff;
  padding: 0.8rem;
  &:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  }
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
    li {
      margin-bottom: 0.5rem;
      line-height: 1.5;
      &:hover {
        text-decoration: underline;
      }
    }
  }
}
a.btn {
  display: inline-block;
  text-decoration: none;
  transition: ease-in-out 0.3s;
  &:hover {
    animation: 0.3s ease-in-out;
    transform: scale(1.1);
  }
}
.btn-gradient-blue {
  background: linear-gradient(45deg, #007bff, #00bfff);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: ease-in-out 0.3s;
}

// animated svg icons
//variables
@import url(https://fonts.googleapis.com/css?family=Comfortaa:400,700,300);
$baseColor : #e74c3c;
$fontColor : #000000;
svg{
  width: 100px;
  height: 100px;
  margin: 20px;
  display:inline-block;
}

//animation
@keyframes fill {
  0% {
    fill: transparent;
  }
  100% {
    fill: $baseColor;
  }
}
//follow me template
.made-with-love{
  margin-top: 20px;
  padding: 10px;
  font-size: 10px;
  font-family: 'Comfortaa', cursive;
  a{
    text-decoration: none;
    color: $baseColor;
    &:hover{
      text-decoration: underline;
    }
  }
  i{
    font-style: normal;
    font-size: 14px;
    position: relative;
    top: 2px;
  }
  a{
    color: #000000;
    text-decoration: none;
    &:hover{
      text-decoration: underline;
    }
  }
}