html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.page__title {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

.page__title nav {
  display: flex;
  justify-content: space-between;
  padding-block-end: 2rem;
  padding-inline: 2rem;
}

.page__title nav #index-btn {
  line-height: var(--line-height-tight);
  padding-inline-end: 0.5rem;
}

.page__title h1 {
  margin: 0;
  font-weight: normal;
  padding-inline-start: 0.5rem;
}

.modal {
  width: 100dvw;
  height: 100dvh;
  border: none;
  display: none;
  overflow: hidden;
}

.modal[data-open="true"] {
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 10;
  inset: 0;
}

.about-container {
  padding: 1em;
  background-color: #ffffff;
  width: 60vw;
  max-height: 100vh;
  overflow: auto;
}

/* custom scroll bar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #181818;
}

::-webkit-scrollbar-thumb {
  background: #ffffff;
}
