Не могу понять почему блоки не выравниваются в одну линию, заголовок стал нормально, а остальной текст ниже

Рейтинг: 0Ответов: 0Опубликовано: 02.05.2023

HTML введите сюда описание изображения

CSS

body{
    font-family: 'Gilroy-Medium','Gilroy-Bold', sans-serif;
    font-size: 18px;
    line-height: 22px;
    background-color: #fff;
    font-weight: 400;
}

.container{
    margin: 0 auto;
    width: 944px;
}
.header-nav{
    display: flex;
    text-align: center;
    justify-content: space-between;
}

.nav-item{
    font-size: 18px;
    line-height: 22px;
    text-decoration: none;
    color: #828282;
    padding: 32px 0;
}

.nav-item:hover{
    color: #070707;
}

.header-hr{
    color: #828282;
    border: 1px solid #828282;
    transform: matrix(1, 0, 0, 1, 0, 0);
}

.header-inner{
    font-size: 48px;
    line-height: 59px;
    color: #070707;
}

.header-text{
    font-size: 18px;
    line-height: 22px;
    color: #070707;
}

.header-info{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

}

.header-text{
    font-family: 'Gilroy-Medium';
    font-size: 18px;
    line-height: 22px;
}

.header_changer{
    font-family: 'Gilroy-Bold';
    font-size: 16px;
    line-height: 20px;
    color: #828282;
    transform: rotate(-90deg);
}

как выглядит у меня как должно быть

Ответы

Ответов пока нет.