@tailwind base;
@tailwind components;
@tailwind utilities;

body {
  font-family: sans-serif;
}

/* Colores */

.bg-blue-500 {
  background-color: #006699;
}

.text-blue-500 {
  color: #006699;
}

.hover:bg-blue-600 {
  background-color: #004c79;
}

.hover:text-blue-600 {
  color: #004c79;
}

/* Responsive */

@media (max-width: 768px) {
  .juegos ul {
    grid-template-columns: 1fr;
  }
}
