/* APP GLOBAL STYLING */

:root {
  --app-color-primary: #46377A;
  --app-color-secondary: "";
}

/* CSS RESET */

.btn{
    border-radius: 50rem !important;
}

/* BOOTSTRAP STYLING */


/* CUSTOM STYLING */
.bg-primary{
    background-color: var(--app-color-primary) !important;
}

.app__link{
    font-size: 0.8rem !important;
    font-weight: 600 !important;
}

.app__link-icon{
    color: #000;
    background-color: white;
    font-weight: black;
    border-radius: 50rem;
    padding: 0.8px 3px;
}

.hover__scale:hover{
    transform: scale(1.050);
    transition: all 0.2s;
    z-index: 10000;
}