/*general styles*/
* {
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  color: var(--text);
  flex-shrink: 0;
}

html, body, div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}


div {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}


button {
  border-radius: 8px;
  border: none;
}

a {
  display: block;
  margin: 0.5rem 0;
}

.root {
  background: var(--bg);
  overflow: auto;
  margin: 0;
}


.main {
  width: 100%;
  height: max-content;
  min-height: 90%;
  padding: 5rem 1rem 1rem 1rem;
}

.pages {
  display: none;
  
  &.active {
    display: block;
  }
}


