html {
  scroll-behavior: smooth;
}

form {
  display: inline;
}

body {
  overflow-x: auto;
  margin: 0;
  padding: 0;
  text-align: left;
  font: 400 calc(9.5px + 0.2vw) "inter", sans-serif;
  color: var(--mainfont);
  line-height: 180%;
  letter-spacing: 0.3px;
  
}

table,
tr,
td {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s;
  -o-transition-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:hover {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.4s;
  -o-transition-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

smallfont {
  font-size: var(--smallfont);
  text-transform: uppercase;
}

/****************************************
   Header
*****************************************/

#navi {
  text-transform: lowercase;
  padding: 25px;
  height: 40px;
  box-sizing: border-box;
  border-bottom: var(--border);
  background: var(--mainbg);

  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

#navstrip {
  font-size: var(--smallfont);
  text-transform: uppercase;
  opacity: 0.7;
}

#navstrip a {
  margin-right: 2vh;
}

#navstrip a:hover {
  opacity: 1;
}

.scrollers {
  font-size: 140%;
  opacity: 0.6;
}

#navi #uicon {
  display: inline-block;
  margin: 65px 20px 0;
  border: 8px solid var(--mainbg);
  outline: var(--border);
  height: 50px;
  width: 50px;
  transform: rotate(45deg);
  overflow: hidden;
  z-index: 999;
}

#navi .uicon {
  display: block;
  height: 76px;
  width: 76px;
  transform: rotate(-45deg);
  margin-top: -11px;
  margin-left: -11px;
  z-index: 99999;
}

.side-menu {
  position: fixed;
  z-index: 9999;
  top: 0px;
  left: 0px;
  width: 50px;
  height: 100%;
  padding-bottom: 20px;
  border-right: var(--border);
  box-sizing: border-box;
  text-align: center;
}

.side-menu a {
  display: block;
  border-bottom: var(--border);
  font-size: 110%;
  padding: 18px 0;
  height: 50px;
  box-sizing: border-box;
}

.side-menu a:hover {
  color: var(--accent);
}

#wrapper {
  margin: 55px 0 0;
  counter-reset: mt-counter;
}