HTML
<div class="header__content">
<div class="header__content--box">
<div class="header__text-box">
<h1 class="header__title">Ремонт стиральных машин на дому c годовой гарантией</h1>
<p class="header__text"><span>Отремонтируем на дому</span> или бесплатно завезем и доставим
обратно
из
сервисного центра</p>
</div>
<a href="#call" class="header__btn">Заказать звонок</a>
</div>
CSS
.header__content {
min-height: calc(100vh - 104px);
display: flex;
align-items: center;
justify-content: end;
position: relative;
}
.header__content--box {
color: #fff;
width: 665px;
}
.header__title {
margin-bottom: 25px;
font-weight: 800;
font-size: 67px;
line-height: 64px;
letter-spacing: -0.015em;
}
.header__text {
margin-bottom: 35px;
font-weight: 700;
font-size: 20px;
line-height: 24px;
}
.header__text span {
color: #FFC464;
}
.header__btn {
padding: 18px 50px;
background-color: #000;
color: #fff;
font-weight: 500;
font-size: 16px;
line-height: 19px;
border: 1px solid #000;
border-radius: 15px;
cursor: pointer;
transition: all .2s ease;
}
.header__btn:hover {
background-color: #fff;
color: black;
border: 1px solid #fff;
}