:root {
  --bg-color: #F8EEDA;
  --text-color: #AC5908;
  --box-bg: #fffefc;
  --border-color: #AC5908;
  --scrollbar-thumb: #967e68;
  --link-color: #76AFC2;
  --visited-link: #AC5908;
  --list-image: url('https://files.catbox.moe/htzv4e.gif');
  --button-bg: transparent;
  --button-border: #AC5908;
  --button-text: #AC5908;
}

body.dark-mode {
  --bg-color: #1d1b1b;
  --text-color: #4f8ed6;
  --box-bg: #FFFEFC;
  --border-color: #7BC5F0;
  --scrollbar-thumb: #c4975b;
  --link-color: #AEE7F8;
  --visited-link: #7BC5F0;
  --list-image: url('https://files.catbox.moe/0ygzx9.gif');
  background-image: url('https://i.pinimg.com/1200x/4a/e1/d0/4ae1d0aa604b88c29494c262ce414b74.jpg');
  --button-bg: transparent;
  --button-border: #7BC5F0;
  --button-text: #7BC5F0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-image: url('https://files.catbox.moe/yu9hbk.png');
  background-color: var(--bg-color);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  margin: 7%;
  font-family: 'Comic Sans Ms', sans-serif;
  font-size: 16px;
  color: var(--text-color);
}

a:hover, button:hover {
  cursor: url('https://files.catbox.moe/xfme93.gif'), pointer;
}

.sidebg {
  background-image: url('https://i.imgur.com/WWd5ZJ1.png');
  background-repeat: repeat-y;
  background-position: top right;
  width: 200px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.side {
  background-color: var(--box-bg);
  width: 176px;
  height: 100%;
  padding: 1rem 0.5rem 1rem 1rem;
  text-align: justify;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.avatar {
  width: 100%;
  border-radius: 20%;
  object-fit: cover;
  border: 5px dashed #f0e5cc;
  margin-bottom: 0.5rem;
  transition: border 0.3s;
}

.sideheaders {
  font-family: 'Love Ya Like A Sister', serif;
  font-size: 28px;
}

.side ul {
  padding-left: 2.5rem;
}

.side li {
  list-style-image: var(--list-image);
  font-size: 16px;
}

.container {
  display: flex;
  flex-direction: column;
  margin-left: 200px;
}

.headerwrapper {
  display: flex;
  justify-content: space-between;
}

.title {
  font-family: 'Love Ya Like A Sister', serif;
  font-size: 46px;
  color: var(--text-color);
  margin-left: -1rem;
}

.headerimg {
  width: 285px;
  margin-right: -1rem;
  margin-bottom: -1rem;
}

.box {
  display: flex;
  background-color: var(--box-bg);
  border: 4px dotted var(--border-color);
  margin: 10px 0;
}

.left {
  border-right: 3px solid var(--border-color);
  padding: 0.7rem;
  text-align: center;
}

.icon {
  width: 90px;
  border: 2px solid #967E68;
}

.right {
  padding: 1rem;
}

.note {
  font-size: 8px;
}

.button {
  background: var(--button-bg);
  border: 3px dashed var(--button-border);
  border-radius: 25%;
  color: var(--button-text);
  padding: 0.5rem;
  margin: 0.5rem;
  font-weight: bold;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  font-size: 14px;
  cursor: pointer;
}

.background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
  transition: background-image 0.5s ease-in-out, opacity 0.4s ease-in-out;
}

body.dark-mode .background-wrapper {
  background-image: url('https://i.pinimg.com/1200x/4a/e1/d0/4ae1d0aa604b88c29494c262ce414b74.jpg');
}

.page {
  display: none;
}

.page.active {
  display: block;
}

@media(max-width:760px) {
  body {
    margin: 0;
    padding: 1rem;
  }
  .sidebg {
    background-image: none;
    position: relative;
    width: 100%;
    height: auto;
  }
  .side {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
  .avatar {
    width: 250px;
    margin: 0 auto;
  }
  .container {
    margin: 0;
  }
  .headerimg {
    width: 180px;
  }
  .title {
    font-size: 36px;
    margin: 0;
  }
}