header { /* display */ display: flex; flex-direction: row; justify-content: space-between; align-items: center; /* color */ background-color: white; color: #19332d; /* size */ height: 100%; font-weight: bolder; /* border */ border-bottom: solid 1px black; padding-left: 1.5rem; padding-right: 1.5rem; } header .logo { /* size */ font-size: xx-large; } header .logo:hover { cursor: pointer; } header .user { display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 1rem; font-size: large; } header .user:hover { cursor: pointer; }