header.css 424 B

1234567891011121314151617181920212223242526272829303132
  1. .header__row{
  2. display: flex;
  3. justify-content: flex-end;
  4. position: relative;
  5. }
  6. .header__content{
  7. width: 626px;
  8. position: absolute;
  9. left: 0;
  10. top: 50%;
  11. transform: translateY(-50%);
  12. }
  13. .header__title{
  14. margin: 0;
  15. font-family: 'Playfair Display', serif;
  16. font-weight: normal;
  17. font-size: 72px;
  18. line-height: 96px;
  19. margin-bottom: 20px;
  20. }
  21. .header__text{
  22. font-size: 22px;
  23. line-height: 1.5;
  24. margin-bottom: 60px;
  25. }