/* FONT IMPORT */
@import url("https://sadhost.neocities.org/fonts/FreePixel.ttf");
@font-face {
  font-family: "FreePixel";
  src: url("https://sadhost.neocities.org/fonts/FreePixel.ttf")
    format("truetype");
}

/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: #dfb9f9;
  --content-background-color: #f7d1f4;
  --sidebar-background-color: #f7d1f4;

  /* Text Colors: */
  --text-color: #000000;
  --sidebar-text-color: #000000;
  --link-color: #2b9aab;
  --link-color-hover: #7780ec;

  /* Text: */
  --font: "FreePixel", serif;
  --heading-font: "FreePixel", serif;
  --font-size: 14px;



/* -------------------------------------------------------- */
/* BASICS */
/* -------------------------------------------------------- */



body {
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-size: var(--font-size);
  margin: 5;
  padding: var(--margin);
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
  background: var(--background-color);
  background-image: url("");
}

::selection {
  /* (Text highlighted by the user) */
  background: rgba(0, 0, 0, 0.2);
}



/* Links: */
a {
  text-decoration: underline;
}

a,
a:visited {
  color: var(--link-color);
}

a:hover,
a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
}
 

 
 

/* -------------------------------------------------------- */
/* SIDEBARS */
/* -------------------------------------------------------- */

 
 
 

/* HEADINGS: */

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: var(--heading-font);
  margin-bottom: 0;
  line-height: 1.5;
}

main h1:first-child,
main h2:first-child,
main h3:first-child,
main h4:first-child,
main h5:first-child,
main h6:first-child {
  margin-top: 0;
}

main h1 {
  font-size: 1.5em;
}

main h2 {
  font-size: 1.4em;
}

main h3 {
  font-size: 1.3em;
}

main h4 {
  font-size: 1.2em;
}

main h5 {
  font-size: 1.1em;
}

main h6 {
  font-size: 1em;
}

 

 
ul {
    padding-left: 20px; /* Adjust the value as needed */
}
 


 
}