/*______________ GENERAL ________________*/

html {
  scroll-behavior: smooth;
}


.main-text-color{
    color:rgb(208, 71, 157);
}

.secondary-text-color{
    color: rgb(127, 132, 66);
}

.secondary-bg-color{
    background-color: rgb(127, 132, 66);
}

.main-button{
    background-color:rgb(208, 71, 157);
    border-radius: 10px;
    color: white;
}

.main-button:hover{
    background-color:rgb(128, 42, 96);
    color: white;
}

.secondary-button{
    background-color:rgb(127, 132, 66);
    border-radius: 10px;
    color: white;
}

.secondary-button:hover{
    background-color:rgb(75, 79, 40);
    color: white;
}

.text-shadow{
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.aNotUnderlined {
    text-decoration: none;
}

/*______________ END GENERAL ________________*/
/*______________ NAVBAR SECTION ________________*/
.navbar {
    background: rgba(255, 255, 255, 0); 
    backdrop-filter: blur(5px); 
    -webkit-backdrop-filter: blur(5px); 
    border: bottom 0;
    transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
}

.navbar .nav-link{
    color: rgb(255, 255, 255);
}

.secondary-navbar {
    background: rgb(33, 37, 41)  !important;
    color: white;
    transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
}

.secondary-navbar .nav-link{
    color: rgb(255, 255, 255);
}

.tertiary-navbar {
    background: rgb(248,249,250)  !important;
    color: black;
    transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
}

.tertiary-navbar .nav-link{
    color: black;
}


.dropdown-menu .dropdown-item {
    color: rgb(0, 0, 0); 
    transition: all 0.5s ease; 
    padding-left: 10px; 
}

.dropdown-menu .dropdown-item:hover {
    color: rgb(208, 71, 157); 
    background-color: rgb(195, 209, 223);
    padding-left: 20px; 
}

.nav-link:hover{
    color: rgb(208, 71, 157);
}


/*______________ END NAVBAR SECTION ________________*/

/*______________ FOOTER SECTION ________________*/

footer {
    position: relative;
    bottom: 0;
}



