banner.css 335 B

1234567891011121314151617
  1. .banner {
  2. width: 100%;
  3. height: 30rem;
  4. background: black;
  5. position: relative;
  6. background-repeat: no-repeat;
  7. background-size: 100% auto;
  8. }
  9. .banner-title {
  10. font-size: 3.125rem;
  11. font-weight: normal;
  12. color: #ffffff;
  13. position: absolute;
  14. left: 50%;
  15. top: calc((30rem - 5.25rem) / 2);
  16. transform: translate(-50%, 0);
  17. }