body{
    font-family: 'Fredoka One', cursive;
    color: #421F6F !important;
}

.yellow{
    color: #FFB907;
}

.gray{
    color: rgba(33, 37, 41, 0.75);
}

/* Breadcrumb */
.breadcrumb-link{ color: var(--purple); text-decoration:none; font-weight:500 }
.breadcrumb-link:hover{ text-decoration:underline; }

/* Buttons */
.btn-main {
    background-color: #FFB907;
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1.1rem;
    /* font-weight: bold; */
    transition: all 0.3s ease;
    
}

.btn-main:hover {
    background-color: transparent;
    border: #FFB907 1px solid;
    color: #FFB907;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #421F6F;
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1.1rem;
    /* margin-left: 15px; */
    /* font-weight: bold; */
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: transparent;
    border: #421F6F 1px solid;
    color: #421F6F;
    transform: scale(1.05);
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.774);
}

.badge{
    font-weight: 500;
}