Столкнулся с элементарной проблемой, которую не выходит решить.
На референсе текст выглядит вот так
А выходит вот так
<div class="intro">
<div class="container">
<div class="intro__inner">
<h1 class="intro__title">We Design and Develop</h1>
<p class="intro__subtitle"> We are a new design studio based in USA. We have over
20 years of combined experience, and know a thing or two
about designing websites and mobile apps.</p>
</div>
</div>
</div>
.intro {
display: flex;
height: 650px;
flex-direction: column;
justify-content: center;
}
.intro__inner {
width: 100%;
max-width: 870px;
margin: 0 auto;
text-align: right;
}
.intro__title{
font-weight: 700;
font-size: 27px;
line-height: 1,263157894736842;
}
.intro__subtitle{
font-family: 'Nunito Sans', sans-serif;
font-size: 14px;
font-weight: 500;
text-align: left;
}
Вопрос:
Что конкретно мои кривые ручонки делают не так?