/* FONT IMPORT */
@import url('https://fonts.cdnfonts.com/css/open-dyslexic');


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

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


  /* Text Colors: */
  --text-color: #283871;
  --sidebar-text-color: #001947;
  --link-color: #839AC6;
  --link-color-hover: #6060ff;
a:link {
  color: #212fab;
}

/* visited link */
a:visited {
  color: #3e0090;
}

/* mouse over link */
a:hover {
  color: #ffcd6d;
}

/* selected link */
a:active {
  color: #795d8f;
}
  /* Text: */
  --font: 'Open-Dyslexic', sans-serif;
  --heading-font: Monaco, monospace;
  --font-size: 17px;
  
  /* Other Settings: */
  --margin: 10;
  --padding: 24px;
  --border: 17px solid #795d8f;
  --round-borders: 7px;
  --sidebar-width: 396px;
}

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


* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-size: var(--font-size);
  margin: 0;
  padding: var(--margin);
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
  background: var(--background-color);
  background-image: url("https://file.garden/aFmta2R8IWe0OTgH/site%20related/Untitled129_20250710181117.png");
   background-size: 100px
  
}

#container {
  
  display: grid;
  grid-gap: 4px;
  grid-template: "container2 sidebar" auto 
    "footer footer" 
     / 500px 1fr;
  /* mobile */
  @media (max-width: 800px) {
  .container {
    grid-template:
      "container2"
      "sidebar";
    }  

  max-width: 700px;
  border-width: 3px;
  border-style: ridge;
  border-color: #283871;
  border-radius: 4px;
  padding: 4px;
  margin: 10px;
  background: #fbf2e1;
  }

#container2 {
 grid-area: container2; 
    border-style: ridge;
  border-width: 3px;
  border-color: #283871;
  border-radius: 4px;
  padding: 7px;
  margin: 4px;
  background: #FFFDFB;
  max-height: 750px;
  }

#sidebar {
  grid-area: sidebar;
    border-style: ridge;
  border-width: 3px;
  border-color: #283871;
  border-radius: 4px;
  padding: 2px;
  margin: 5px;
  background: #FFFDFB;
  }




li {
  list-style-image: url("https://64.media.tumblr.com/2a97c221a6b6b96391ae44dd0c10be99/41a4364a00fb5cb3-7f/s75x75_c1/722f0b862b66c94d3dbe2aef7a1675e33934f91b.gifv");
}

