Announcement Bar background color

I would like to change the background of Announcement bar and color of font to be white and font size also be change url is given bellow

namalzara.com

If it is not an option in the customiser you need to add this to your css file:

.header__tape {
  background-color: red; /* change to your desired color */
}
.header__tape p,
.header__tape i{
  color: white;
}

.header__tape p{
  font-size: 15px /* change to desired font size */
}