:root,
[data-bs-theme=light] {
  --bs-link-color: #f2efe9;
  --bs-link-color-rgb: 255, 255, 255;
  --bs-link-hover-color: #f2efe9;
  --bs-link-hover-color-rgb: 255, 255, 255;
  --bs-link-decoration: none;
}

* {
  font-family: "Poppins", Sans-serif !important;
}

body{
  font-size: 18px !important;
}

.title-home {
  background: linear-gradient(to right, #4fc0e8, #ffc08e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes rotate {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}

.rotating {
  display: inline-block;
  animation: rotate 2s linear infinite;
}

.nav-item .active{
    color: white !important;
}