body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}


.nav-link:hover {
  color: red !important;
}


.btn:hover {
  background-color: #fff !important;
  color: red !important;
}



.footer-icon img,
.footer-icon i {
  transition: transform 0.3s, filter 0.3s;
}

.footer-icon:hover img,
.footer-icon:hover i {
  transform: scale(1.2);
  filter: brightness(1.2);
}

#loader.hidden {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.accessibility-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  background-color: #ff003c;
  color: #000;
  border: none;
  box-shadow: 0 0 10px #ff003c;
  cursor: pointer;
}


#accessibilityPanel {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 1040;
  width: 200px;
  padding: 15px;
  background-color: #111;
  border: 2px solid #ff003c;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  display: none;
  transition: opacity 0.3s, transform 0.3s;
}

#accessibilityPanel.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.panel-button {
  border: 1px solid #ff003c;
  color: #ff003c;
  background: transparent;
  border-radius: 5px;
  padding: 8px 12px;
  margin-bottom: 8px;
  width: 100%;
  text-align: center;
  transition: background-color 0.2s, color 0.2s;
}

.panel-button:hover {
  background-color: #ff003c;
  color: #000;
}

.btn-reset {
  border-color: #666 !important;
  color: #ccc !important;
}

.btn-reset:hover {
  background-color: #ccc !important;
  color: #000 !important;
}

.dyslexic {
  font-family: 'Lexend', sans-serif !important;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
p  { font-size: 1rem; }

 .btn:hover { background-color: white !important; color: red !important; }