.navbar .navbtnsel::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--selectedLinkUnder);
  transform-origin: center;
  transition: transform 0.15s ease-out;
  transform: scaleX(1);
}

.page {
  width: 100%;
  max-width: 900px;
  margin: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg);
}

.botContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pageInner {
  width: 99%;
  min-height: 100vh;
  max-width: 900px;
}

.spacer {
  grid-area: spacer;
  min-height: 50px;
  max-height: 100vh;
  height: 100%;
}

.themeChange {
  grid-area: themeC;
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
}

.navbar {
  background: var(--navbarBg);
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  min-height: 50px;
}
.navbar .links {
  height: 100%;
  padding-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-basis: 0;
  flex-shrink: 1;
  flex-grow: 1;
}
.navbar .pfp-icon {
  display: block;
  flex-shrink: 1;
  aspect-ratio: 1/1;
  width: 50px;
  margin-right: 10px;
}
.navbar {
  color: var(--navbarLinks);
  font-family: sans-serif;
}
.navbar a {
  height: 100%;
  padding: 10px;
  color: inherit;
  outline: none;
}
.navbar a:visited,
.navbar a:active {
  color: inherit;
  outline: none;
}
.navbar .navbtnsel {
  background: var(--navbarSelBg);
}
.navbg {
  width: 100%;
  background: var(--navbarBg);
}

.content {
  grid-area: content;
  max-width: 100%;
  height: 100%;
}

.themeChangerParent {
  width: 1em;
  height: 1em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}

.themeChanger {
  height: 100%;
  flex-grow: 1;
  height: 2em;
}