/* Import Bebas Neue font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  /* --default-background-color: rgb(26, 26, 26); */
  /* --default-fill-action: rgb(0, 0, 0); */
  /* --default-fill-secondary: rgb(0, 0, 0); */
  /* --default-family-color: rgba(255, 255, 255, 0.1); */
  --default-hover-color: rgba(0, 0, 255, 0.3);
  /* --default-text-color: rgb(255, 255, 255); */
  /* --default-stroke: rgb(61, 61, 61); */
  /* --default-stroke-slice: rgb(61, 61, 61); */
  /* --default-shadow-color: rgba(255, 255, 255, 0.2); */
  /* --default-circle-font: Arial, sans-serif; */
  /* --default-font: Arial, sans-serif; */
}

body {
  font-family: Arial, sans-serif !important;
  background: linear-gradient(45deg, #ff0000, #0066ff, #ff00c8);
  background-size: 400% 400%;
  animation: gradientAnimation 7s ease-in-out infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  
  50% {
    background-position: 100% 50%;
  }
  
  100% {
    background-position: 0% 50%;
  }
}


/* Title Styling */
.Title {
  font-family: 'Bebas Neue', sans-serif !Important;
  color: white; /* Set text color to white */
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.6); /* Optional: add a shadow for better visibility */
}


text {
  font-family: 'Arial', sans-serif !important;
}

.slice {
  stroke: rgba(0, 0, 0, 0.2);
  transition: fill 0.5s ease-in-out;
}


.family-slice {
  fill: rgba(0, 0, 255, 0.1);
}


button {
  background-color: #0066ff;
  color: rgb(255, 255, 255);
  border: 1px solid rgb(255, 255, 255, 255.5);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

button:hover {
  background-color: #75a5ff;
}

.Circle {
  fill: white;
  filter: url(#drop-shadow);
}

svg text {
  fill: #000000;
}

.force-hover {
  fill: rgba(0, 0, 255, 0.3);
  transition: fill 0.2s ease-in-out;
}

#QR {
  -webkit-filter:invert(100%);
   filter:progid:DXImageTransform.Microsoft.BasicImage(invert='1');
}