How can I adjust the logo size in the Dawn theme?

hi I use these two codes to put the logo into the Center

@media (min-width: 990px){
.header{
display: flex;
}

.header .header__inline-menu{
display: none;
}

.header > *:nth-child(2) img{
max-width: 120px;
margin: 0 auto;
display: block;
}

@media (min-width: 990px){
.header{
display: flex;
}

.header .header__inline-menu{
display: none;
}

/* logo */
.header > *:nth-child(2){
order: 2;
width: 250%;

/* margin: 0 auto; */
}

.header > *:nth-child(2) img{
max-width: 120px;
margin: 0 auto;
display: block;
}

.header__heading-link{
display: table;
margin: 0 auto;

}

.header > *:nth-child(4){
order: 3;

}

header-drawer{
display: block !important;
}

@media (min-width: 990px){
.header__heading-link {padding-left: 10rem !important;}
}

and now i cannot make the logo bigger please help

this?