/* Header */
.site-header {
  width: 100%;
  background-color: var(--bg-high-contrast);
  border-bottom: 6px solid var(--set-dark);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 80px;  
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title{
  margin:0;              
  display:inline-block;  
}

.site-title img{
  height: 80px;
  width:auto;
  position: fixed;
  top: 0px;
  left: 20px;
}

.settings-button {
  position: fixed;
  font-size: 80px;
  top: -30px;
  right: -20px;
  border: none;
  background: none;
  color: var(--text);
  box-shadow: none;
}

.settings-button:hover,
.settings-button.active {
  color: var(--text-contrast);
  box-shadow: none;
  background-color: #ffffff00;
}