index.module.css 365 B

1234567891011121314151617181920212223
  1. /**
  2. * CSS files with the .module.css suffix will be treated as CSS modules
  3. * and scoped locally.
  4. */
  5. .heroBanner {
  6. padding: 4rem 0;
  7. text-align: center;
  8. position: relative;
  9. overflow: hidden;
  10. }
  11. @media screen and (max-width: 996px) {
  12. .heroBanner {
  13. padding: 2rem;
  14. }
  15. }
  16. .buttons {
  17. display: flex;
  18. align-items: center;
  19. justify-content: center;
  20. }