How to align and modify the background color of the header tag of the website?

can the god teach you how to align the title of the white part and change the background color? A technical rookie builds a station with only some basic knowledge
clipboard.png

clipboard.png

Dec.20,2021

the blue one outside you if the class name is nav

.nav{  //
  display: flex;
  flex-direction: row;
  align-items: center;
}

then your white one is if the class name is header

.header{
 background:red;  //
}
Menu