/* Custom Styles */
body {
  font-family: 'Arial', sans-serif;
}

h1, h2, h3, h4 {
  font-family: 'Helvetica', sans-serif;
}

button {
  padding: 12px 24px;
  background-color: #38bdf8; /* Tailwind's bg-blue-400 */
  color: white;
  border-radius: 8px;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #0ea5e9; /* Tailwind's bg-blue-500 */
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  background-color: #cbd5e1; /* Tailwind's bg-gray-300 */
  color: #1e293b; /* Tailwind's text-gray-800 */
  margin-right: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.badge:hover {
  background-color: #93c5fd; /* Tailwind's hover:bg-blue-200 */
}

footer {
  text-align: center;
  font-size: 14px;
}

footer p {
  color: #9ca3af; /* Tailwind's text-gray-400 */
}

/* ----------------------------------- */

#root {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.logo {
  height: 6em;
  padding: 1.5em;
  will-change: filter;
  transition: filter 300ms;
}
.logo:hover {
  filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.react:hover {
  filter: drop-shadow(0 0 2em #61dafbaa);
}

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

@media (prefers-reduced-motion: no-preference) {
  a:nth-of-type(2) .logo {
    animation: logo-spin infinite 20s linear;
  }
}

.card {
  padding: 2em;
}

.read-the-docs {
  color: #888;
}






/* ----------------------------------- */



/* Custom Styles */
body {
  font-family: 'Arial', sans-serif;
}

h1 {
  font-family: 'Helvetica', sans-serif;
}

button {
  padding: 12px 24px;
  background-color: #38bdf8; /* Tailwind's bg-blue-400 */
  color: white;
  border-radius: 8px;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #0ea5e9; /* Tailwind's bg-blue-500 */
}

/* For the mobile menu, make sure the icons display properly */
#menu-icon {
  display: block;
}

#close-icon {
  display: none;
}

/* For the menu state */
#mobile-menu {
  display: none;
}

#mobile-menu.show {
  display: block;
}