#bobyBackground{
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  height: 500px;
  width: 100%;
  background-size: cover;
  background-position: top center;
}
#bobyBackground #bobyBackgroundMasque {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  height: 500px;
  width: 100%;
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,0.8) 40%, rgba(255,255,255,1) 100%);
}
body>main{
  padding-top: calc( var(--spacing) * 2 );
}

:root:not([data-theme="light"]) #bobyBackground #bobyBackgroundMasque {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  height: 500px;
  width: 100%;
  background: rgb(17,25,31);
  background: linear-gradient(180deg, rgba(17,25,31,0.8) 40%, rgba(17,25,31,1) 100%);
}

dialog article{
  min-width: 80%;
}

#footBar{
  z-index: 1;
  position: fixed;
  bottom: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: var(--spacing);
  color: var(--secondary);
  font-size: 0.7em;
  background-color: var(--background-color);
}
#footBar a{
  font-size: inherit;
  padding: calc(var(--form-element-spacing-vertical)*0.25) calc(var(--form-element-spacing-horizontal)*0.5);
}
