styles.css 486 B

12345678910111213141516171819202122232425262728293031
  1. .header-e928854 {
  2. display: flex;
  3. align-items: center;
  4. justify-content: space-between;
  5. padding: 0.75rem 1rem;
  6. background-color: #1f2937;
  7. /* dark gray */
  8. color: white;
  9. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  10. background-color: blue;
  11. }
  12. .title-e928854 {
  13. font-size: 1.25rem;
  14. font-weight: 600;
  15. }
  16. .nav-e928854 {
  17. display: flex;
  18. gap: 1rem;
  19. }
  20. .nav-e928854 a {
  21. text-decoration: none;
  22. color: inherit;
  23. font-size: 0.95rem;
  24. }
  25. .nav-e928854 a:hover {
  26. text-decoration: underline;
  27. }