@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100vh;
  overflow: hidden;
  font-family: 'Share Tech Mono', monospace;
  background: #000;
  color: white;
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  background: #000;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.canvas {
  display: flex;
  height: 100vh;
  width: max-content;
}

.panel {
  min-width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.panel.dark {
  background: #111;
}

.panel.blue {
  background: #2779a7;
}

h1.glitch {
  font-size: 4rem;
  position: relative;
  text-transform: uppercase;
}