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

body {
  background: #ffffff;
  color: #2a3a1f;
  font-family: 'Georgia', serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

header {
  text-align: center;
  padding: 40px 20px 20px;
  z-index: 10;
  position: relative;
}

.logo-container {
  display: inline-block;
  margin-bottom: 12px;
}

.logo-svg {
  max-width: min(92vw, 560px);
  height: auto;
}

.subtext {
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  color: #5d7440;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* text-transform: uppercase; */
  /* font-style: italic; */
}

#canvas-container {
  width: 100%;
  height: calc(100vh - 220px);
  min-height: 500px;
  position: relative;
}

canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
