
* {
    font-family: Figtree;
}

.btn-signup{
    box-shadow: 0 0 40px solid rgba(36, 144, 126, 0.28)
}

.page-header {
    background-color: rgba(255, 255, 255, 0.08);
}

.gradient-border {
    position: relative;
    display: inline-block;
    padding: 1px;
    border-radius: 9999px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0.1));
    border-radius: inherit;
    z-index: -1;
}

.gradient-content {
    color: white;
    border-radius: 9999px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial {
    background-image: url("../img/main-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 0 2px;
}

body{
    background-image: url("../img/main-bg.png");
    background-repeat: no-repeat;
    background-size:cover;
}

.page-feature{
    box-shadow: 0 0 2px;
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
    transition-delay: 0.2s;
  }
  
  .fade-in.show {
    opacity: 1;
    transform: translateY(0);
    animation-duration: 2.5s;
    animation-delay: 1s;
  }
