.blur-text
{
    color: transparent !important;
    text-shadow: 0 0 3px #000;
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
}

.blur-text-high
{
    color: transparent !important;
    text-shadow: 0 0 6px #000;
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
}

.blur-images {
    box-shadow: 10px 20px 20px grey;
    backdrop-filter: blur(10px);
    filter: blur(3px);
}

.blur-text-md
{
    color: transparent !important;
    text-shadow: 0 0 5px #000;
    -webkit-user-select: none; 
  -ms-user-select: none; 
  user-select: none;
}


.nav-pills {
	--bs-nav-pills-border-radius: var(--bs-border-radius);
	--bs-nav-pills-link-active-color: #fff;
	--bs-nav-pills-link-active-bg: var(--bs-danger);
}
.nav-link {
	display: block;
	padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
	font-size: var(--bs-nav-link-font-size);
	font-weight: var(--bs-nav-link-font-weight);
	color: white;
	text-decoration: none;
	background: 0 0;
	border: 0;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
.nav-link:hover {

	color: var(--bs-danger);

}