/* CSS样式 */
.navbar-branding a {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.navbar-branding a::after {
  content: '极客空间'; /* 文字内容 */
  position: absolute;
  top: 55%; /* 垂直居中 */
  left: calc(100% + 5px); /* 图片宽度 + 图片和文字之间的间距 */
  transform: translateY(-50%); /* 垂直居中 */
  color: black; /* 文字颜色 */
  font-size: 20px; /* 文字字体大小 */
}

.navbar-branding a:hover::after {
  /* 当鼠标悬停时改变样式，可以根据需要修改 */
  opacity: 0.7;
}

/* 修改背景图片 */
#header {
    background: url(https://images.cnblogs.com/cnblogs_com/blogs/616069/galleries/2384335/o_240313075003_wallhaven-39l7m3.jpeg) no-repeat scroll 0 0 #f0eef5;
    overflow-x: hidden;
    background-size: cover;
}

#blogTitle {
    background: url("") no-repeat center 21px;
}

#blogTitle h1 {
    background: url("") no-repeat center;
}

#blogTitle h1 {
    top: 10%;
    left: 35%;
    font-size: 35px;
}

#blogTitle h2 {
    top: 30%;
    left: 60%;
    font-size: 20px;
}