Доброе утро. Нужно выровнять текст влево с отступом в 64px и по вертикали по середине. вроде по вертикале выровнялся , а левый отступ не получился.
.header {
height: 100vh;
min-height: 600px;
max-height: 756px;
background-color: #f2f2f2;
display: flex;
position: relative;
}
.header__tittle{
width: 730px;
height: auto;
z-index: 1;
margin-left: 64px;
margin-top: auto;
margin-bottom: auto;
font-weight: bold;
font-size: 102px;
line-height:96px;
text-align: center;
justify-content: left;
}
<header class="header">
<h1 class="header__tittle">Научиться учиться</h1>
</header>