:root {
  --background: ;
  --background-main: #0a0214;
  --background-sidebar: rgba(10, 2, 20, .8);
  --box-shadow: ;
  --border: solid .03rem #E6CCFF;
  --border-radius: 1.125rem;
  --color: #fff;
  --sidebar-color: #E6CCFF;
  --header-color: #fff;
  --padding: .9rem;
  --margin: .5rem;
  --siderbar-border-radius: 0px 0px .5rem .5rem;
  --header-border-radius: .5rem .5rem 0px 0px;
  --font: "myFont2";
}

@font-face {
  font-family: myFont; /* set name */
  src: url("/styles/AurulentSansMono-Regular.otf");
}

@font-face {
  font-family: myFont2; /* set name */
  src: url("/styles/AurulentSansMono-Regular.otf"); /* url of the font */
}

  body {
    background: url("https://files.catbox.moe/f47wru.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* main body flex */
  .cont {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
    gap: 0.5rem;
  }

  .mainbody {
    order: 1;
    width: 50rem;
  }

  .sidebar {
    order: 2;
    width: 25rem;
  }

  /* boxes + other stff */

  .mainbox {
    font-family: var(--font);
    min-height: 10rem;
    padding: var(--padding);
    margin: var(--margin);
    border: var(--border);
    border-radius: var(--border-radius);
    background: rgba(30, 41, 59, 0.15);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(100, 116, 139, 0.2);
    box-shadow: 0px 12px 40px 0 rgba(2, 6, 23, 0.3),
    inset 0 0 120px rgba(79, 70, 229, 0.08),
    inset 0px 0px 4px 2px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    color: var(--sidebar-color);
  }

  .sidebarbox {
    font-family: var(--font);
    color: var(--sidebar-color);
    padding: var(--padding);
    margin: var(--margin);
    border: var(--border);
    border-radius: var(--siderbar-border-radius);
    margin-top: 0;
    background: var(--background-sidebar);
  }

  .headertxt {
    font-family: "myFont";
    font-weight: 700;
    color: var(--sidebar-color);
    padding: var(--padding);
    margin: var(--margin);
    border: var(--border);
    border-radius: var(--header-border-radius);
    border-bottom: 0;
    margin-bottom: 0;
    background: #180433;
    background: linear-gradient(360deg,rgba(24, 4, 51, .5) 15%, rgba(85, 37, 133, .5) 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
  }

  /* text & stuff */

  .boxp {
    padding: var(--padding);
    border-radius: 8px;
    background: rgba(23, 23, 23, 0.8);
    backdrop-filter: blur(25px) saturate(100%);
    -webkit-backdrop-filter: blur(25px) saturate(100%);
    border: 1px solid rgba(82, 82, 82, 0.2);
    box-shadow: 0px 16px 60px 0 rgba(0, 0, 0, 0.4),
    inset 0px 0px 4px 2px rgba(255, 255, 255, 0.1);
    overflow: hidden;
  }

  p {
    padding: var(--padding);
    overflow: hidden;
  }

h1, h2, h3 {
    font-family: "myFont";
}

  h1 {
    font-style: bold;
    font-weight: 900;
    text-decoration: underline;
    text-indent: 2rem;
  }

  h2 {
    text-indent: 2.5rem;
    font-weight: 600;
  }

  h3 {
    text-indent: 4rem;
    font-weight: 400;
    font-style: italic;
  }

  a:hover {
    color: #CFCFFF;
    text-decoration: none;
    text-decoration: underline;
    font-weight: bold;
  }
  a {
    color: #8F84F0;
  }
  
  ul {
    padding: var(--padding);
    border-radius: 8px;
    background: rgba(23, 23, 23, 0.8);
    backdrop-filter: blur(25px) saturate(100%);
    -webkit-backdrop-filter: blur(25px) saturate(100%);
    border: 1px solid rgba(82, 82, 82, 0.2);
    box-shadow: 0px 16px 60px 0 rgba(0, 0, 0, 0.4),
    inset 0px 0px 4px 2px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    list-style-position: inside;
    list-style-type: "  ✦  "
  }

hr {
    border: 0.1rem dashed #E6CCFF;
    margin: 3rem;
    
}

  /* media */

  @media (max-width: 800px) {
    .cont {
      display: flex;
      flex-direction: column;
    }
    .mainbody {
      width: 25rem;
      order: 1;
    }

    .sidebar {
      order: 2;
      width: 20rem;
    }

  }
