body {
  padding: 0;
  margin: 0;
  display: flex;
  height: 100vh;
}

.wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: column;
  box-sizing: border-box;
}

#left {
  background-color: #aaab96;
  padding: 2rem;
  color: #5c594f;
  font-family: 'Times New Normal' !important;
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
}

#right {
  background-image: url('https://waneinei.neocities.org/other%20images/floral_bun.png');
  background-size: cover;
  background-position: center;
  background-color: #aaab96;
  padding: 0 2rem 0 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  border-left: 3px solid #4f4c46;
}

#lestat {
  width: 900px;
  margin: 2em auto;
}

#banner {
 height: 100%;
 width: 100%;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 background-color: #9b9e83;
 border-left: 1px solid #d7e2e8;
 border-right: 1px solid #d7e2e8;
}

#avatar {
  height: 200px;
  width: 200px;
  border: 1px solid #d7e2e8;
  display: flex;
  align-items: center;
  margin: 1em 0 1em 0;
}

#avatar-inner {
  background-image: url('https://waneinei.neocities.org/other%20images/avatar.png');
  background-size: cover;
  background-position: center;
  height: 170px;
  width: 170px;
  top: 50%;
  margin: auto;
}

#title {
  font-family:'Gelico Milk'; 
  font-size: 3rem; 
  margin-left: 3rem;
}

#commimg {
  max-width: 100%;
  height: auto;
  border-radius: 1em;
  border: 1px solid #d7e2e8;
  padding: 2px;
}

.nav-link {
  font-size: 17px !important;
  margin-bottom: 0.5em;
  height: 30px !important;
  border-radius: 0 !important;
  transition: all 0.5s ease-out;
  font-family: 'Vividly' !important;
  color: #58564d !important;
}

.nav-link.active {
    color: #58564d !important;
    background-color: transparent !important;
    transition: all 0.5s ease-out;
}

.nav-link:hover {
  transition: all 0.3s ease-out;
  color: #dff1f6 !important;
  background-color: transparent !important;
}

.hvr-underline-from-left:before {
  background: #dff1f6 !important;
  height: 1.5px !important;
}

hr {
  border-top: 1px solid #d7e2e8 !important;
  margin: 0.5em !important;
  width: 60% !important;
}

ul {
  margin-top: 1em !important;
}

li {
  padding-left: 1em;
  padding-bottom: 1em;
}

li::marker {
  content: "✿";
  font-size: 0.6em;
}

.modal-content {
  border: transparent !important;
  background-color: transparent !important;
  color: #d7e2e8 !important;
  font-weight: normal !important;
}

#gallery-img img {
  border: 2px solid #d7e2e8 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Vividly';
  src: url('https://waneinei.neocities.org/fonts/Vividly-Regular.ttf');
}

@font-face {
  font-family: 'Gelico Milk';
  src: url('https://waneinei.neocities.org/fonts/Gelico%20Milk.otf');
}

@font-face {
  font-family: 'Times New Normal';
  src: url('https://waneinei.neocities.org/fonts/Times%20New%20Normal%20Regular.ttf');
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #5c594f transparent;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 6px;
  }

  *::-webkit-scrollbar-track {
    background: transparent;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #5c594f;
    border-radius: 0px;
    border: 0px inset #ffffff;
  }