.green {
  background: #bd6C53;
  color: #fff;
}
.green a {
  color: inherit;
}

.inner {
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
}

header {
  top: 0;
  left: 0;
  background: #3d2100;
  color: #fff;
  position: fixed;
  height: 80px;
  width: 100%;
}

.left {
  display: table;
}
.left h1 {
  display: table-cell;
  vertical-align: middle;
  font-size: 20px;
}

.right ul {
  display: flex;
  list-style: none;
}
.right ul li {
  padding-left: 20px;
}
.right ul li a {
  text-decoration: none;
  color: inherit;
}

section {
  margin-top: 80px;
  padding-bottom: 50px;
}

.floating {
  position: fixed;
  right: 8px;
  bottom: 8px;
  display: none;
}
.floating a {
  display: block;
  color: #fff;
  background: #000;
  padding: 8px;
  text-decoration: none;
  opacity: 0.6;
}
.floating:hover {
  opacity: 1;
}

.is-show {
  position: fixed;
  right: 400px;
  bottom: 8px;
  display: block;
}
.is-show a {
  display: block;
  color: #fff;
  background: #595cb3;
  padding: 8px;
  text-decoration: none;
  opacity: 0.6;
}
.is-show:hover {
  opacity: 1;
}