1234567891011121314151617181920212223242526272829303132 |
- .header__row{
- display: flex;
- justify-content: flex-end;
- position: relative;
- }
- .header__content{
- width: 626px;
- position: absolute;
- left: 0;
- top: 50%;
- transform: translateY(-50%);
- }
- .header__title{
- margin: 0;
- font-family: 'Playfair Display', serif;
- font-weight: normal;
- font-size: 72px;
- line-height: 96px;
- margin-bottom: 20px;
- }
- .header__text{
- font-size: 22px;
- line-height: 1.5;
- margin-bottom: 60px;
- }
|