/* 
Sheet: general
Version: 1
Author: Dunstan Becht 
Source: dunstan.becht.network/unity
Variables: 
- header_height = 9 [vh] (header height)
- footer_height = 9 [vh] (footer height)
- header_spacing = 6 [vh] (header margin)
- footer_spacing = 6 [vh] (footer margin)
*/ 

html {
  height: 100%;
  padding: 0;
}

body {
  min-height: 100vh;
  overflow-y: scroll;
  margin: 0;
  padding: 0;
  cursor: default;
  text-align: center;
}

header {
  height: 9vh;
  z-index: 100;
  position: fixed;
  width: 100%;
  margin: 0;
  text-align: center;
  display: flex;
}

.page {
  padding-top: 15vh;
  min-height: 70vh;
  padding-bottom: 6vh;
}

footer {
  height: 9vh;
  display: flex;
  z-index: 100;
  position: relative;
}
