Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. .header {
  2. width: 100%;
  3. background-color: #e2e2e2;
  4. }
  5.  
  6. .header__wrapper {
  7. display: flex;
  8. justify-content: space-between;
  9. width: 100%;
  10. }
  11.  
  12. .header__content {
  13. max-width: 440px;
  14. display: flex;
  15. flex-direction: column;
  16. align-items: flex-start;
  17. justify-content: center;
  18. padding: 50px;
  19. }
  20.  
  21. .header__title {
  22. font-size: 56px;
  23. font-weight: 700;
  24. line-height: 1.2;
  25. margin-bottom: 35px;
  26.  
  27. color: black;
  28. }
  29.  
  30. .header__text {
  31. font-size: 20px;
  32. font-weight: 400;
  33. line-height: 1.4;
  34. margin-bottom: 50px;
  35.  
  36. color: black;
  37. }
  38.  
  39. .img {
  40. width: 50%;
  41. }
  42.  
  43. .header__img {
  44. display: block;
  45. max-width: 100%;
  46. height: auto;
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement