html[data-theme="dark"] {
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  font-family: Quicksand;
  font-weight: bold;
}

main {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 35, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

main::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}


.logo-style {
  font-family: 'Quicksand';
  font-size: 18px;
}

.canvas-style {
  position: absolute;
  width: 100%;
  height: 150%;
  z-index: -1;
}