.img-clip {
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 10px, 100% 100%, 15px 100%, 0 calc(100% - 10px));
}

.tab-active {
  transform: scale(1.05);
  transition: all 0.25s ease;
}

.tab-inactive {
  transform: scale(1);
  transition: all 0.25s ease;
}

@keyframes tab-bounce {
  0% { transform: scale(1); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.tab-active.animate {
  animation: tab-bounce 0.25s;
}

.markdown-body p {
  margin-top: 3rem;
}

.markdown-body p:first-child {
  margin-top: 0;
}
