html {
  height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
  overflow-y: hidden;
  background: #e6ccff;
  background: -webkit-linear-gradient(
    135deg,
    rgba(230, 204, 255, 1) 0%,
    rgba(255, 204, 191, 1) 100%
  );
  background: -moz-linear-gradient(
    135deg,
    rgba(230, 204, 255, 1) 0%,
    rgba(255, 204, 191, 1) 100%
  );
  background: linear-gradient(
    135deg,
    rgba(230, 204, 255, 1) 0%,
    rgba(255, 204, 191, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(
  startColorstr="#E6CCFF",
  endColorstr="#FFCCBF",
  GradientType=0
);
  font-family:
    "Oxanium-woff2", "Oxanium-woff", "Oxanium", "Oxanium-alt", "Segoe UI",
    Tahoma, Geneva, Verdana, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow-y: auto;
}

#display {
  max-width: 80em;
  margin: 0 auto;
}

.mobile {
  display: none;
}

#content {
  padding: 2em;
}

header {
  position: sticky;
  top: 0.5em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0.5em 0.5em 2em 0.5em;
  border-radius: 1em;
  padding: 0.5em;
  box-shadow: 0px 0px 1em -0.25em black;
  backdrop-filter: blur(1em);
  background-color: #ffffffb0;
}

header div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1em;
}

.header-avatar img {
  height: 3em;
  width: auto;
  border-radius: 100%;
  flex: none;
}

#header-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.header-pages {
  padding: 0 1em;
}

.header-icons img {
  height: 1.75em;
  width: auto;
  border-radius: 100%;
  background-color: #fff;
  border-style: solid;
  border-width: 2px;
  border-color: #fff;
}

.header-pages a {
  color: black;
  font-size: 1.25em;
  text-decoration: none;
}

a:has(img) {
  display: flex;
  align-items: center;
}

.no-drag,
.w98-title,
.w98-menu {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.shadow {
  box-shadow: 0px 0px 1em black;
}

.w98-border1 {
  border-width: 1px;
  border-style: solid;
  border-color: #c0c7c8 #000 #000 #c0c7c8;
}
.w98-border2 {
  border-width: 1px;
  border-style: solid;
  border-color: #fff #87888f #87888f #fff;
}
.w98-border1r {
  border-width: 1px;
  border-style: solid;
  border-color: #000 #c0c7c8 #c0c7c8 #000;
}
.w98-border2r {
  border-width: 1px;
  border-style: solid;
  border-color: #87888f #fff #fff #87888f;
}

.w98-root {
  color: #000;
  padding: 2px;
  background-color: #c0c7c8;
  font-size: 10pt;
  font-family:
    "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.w98-title {
  background-color: #0000a8;
  padding: 1px;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  user-select: none;
}

.w98-title div:first-child {
  display: flex;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
}

.w98-title div:last-child {
  display: flex;
}
.w98-title div:last-child img:last-child {
  margin-left: 2px;
}

.w98-title img {
  width: 16px;
  height: 16px;
}

.w98-menu {
  padding: 1px 4px;
  display: flex;
  gap: 1em;
  overflow: hidden;
}

.window-bg {
  background-color: #fff;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  overflow: hidden;
  padding: 4px;
}

a {
  color: #000;
}

.center-link-button {
    display: flex;
    flex-direction: column;
    align-items: safe center;
    padding: 1em;
}

.center-link-button a{
    color: #000;
}