@font-face {
  font-family: "Suse Mono";
  src: url("font/SUSEMono-Regular.ttf");
  font-weight: 400;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  position: relative;
  background-color: #303030;
  font-family: "Suse Mono", sans-serif;

  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.header {
  position: absolute;
  width: 100%;
}

.sandwich {
  width: 96px;
  height: 48px;
  /* background-color: #fff; */
  right: 0;
  float: right;

  box-sizing: border-box;

  position: relative;
  z-index: 5;

  /* flex-direction: column;
  justify-content: space-between; */
  margin: 32px 8px;
  cursor: pointer;
}

.sandwich-bar {
  height: 2px;
  background-color: #00f060;
  width: 50%;
  position: absolute;

  opacity: 1.0;
  transition-duration: 0.5s;

  transform: scaleX(1.0);
}

.sandwich #bar-top {
  top: 0%;
}

.sandwich #bar-mid {
  top: 50%;
}

.sandwich #bar-bot {
  bottom: 0%;
}

.sandwich.close #bar-top {
  transform: rotate(45deg);
  top: 50%;
}

.sandwich.close #bar-bot {
  transform: rotate(-45deg);
  bottom: 50%;
}

.sandwich.close #bar-mid {
  /* opacity: 0.0; */
  transform: scaleX(0.0);
}

.sandwich-menu {
  width: 128px;
  height: 96px;
  position: absolute;
  top: 96px;

  right: 32px;
  
  box-sizing: border-box;
  color: #00f060;
  transform: translateX(0%);
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);

  z-index: 4;

}

.sandwich-menu.hidden {
  transform: translateX(100%);
  right: 0px;
}

.sandwich-menu ul {
  position: relative;
  top: 0;
  list-style: none;
  text-indent: 0;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  right: 0px;
}

.sandwich-menu ul li {
  padding: 8px;
  padding-left: 32px;
  padding-right: 48px;
  margin-bottom: 24px;
  border-right: 4px solid #00f060;

  cursor: pointer;
}

.sandwich-menu ul a {
  color: inherit;
  text-decoration: none;
}

canvas {
  position: absolute;
}

.large-showcase {
  height: 100%;
}

.footer {
  position: relative;
  width: 100%;
  bottom: 0px;
  display: flex;
  align-items: end;
}

.logo-feature {
  background-color: #fff;
  height: 160px;
  width: 160px;
  display: flex;
  flex-direction: column;
  position: absolute;
  text-align: center;
  z-index: 1;
}

.logo-feature .logo-container {
  image-rendering: pixelated;
  padding: 16px;
  
  flex-grow: 1;
}

.logo-container img {
  aspect-ratio: 1;
  height: 100%;
}

#clock {
  font-size: 24px;
  margin: 8px 8px;
}

.ticker {
  background-color: #00f060;
  height: 96px;
  flex-grow: 1;
  vertical-align: middle;
}

.ticker-top {
  height: 64px;
  box-sizing: border-box;
  background-color: #303030;
  border-top: 4px solid #00f060;
  color: #00f060;
  font-size: 40px;
}

.ticker-bot {
  height: 32px;
  font-size: 20px;
  color: #303030;
  margin: auto;
}

.ticker > div {
  display: flex;
  align-items: center;
  justify-items: start;
  overflow: hidden;
  max-width: 100%;
  position: relative;
}

.ticker-container {
  position: absolute;
  left: 0px;
}

.main-window {
  flex-grow: 1;
  background-color: #303030;
}

