/* 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: #4d155e;
  --sidebar-text-color: #001947;
  --link-color: #839AC6;
  --link-color-hover: #6060ff;

  /* 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://64.media.tumblr.com/abb78eeb0b984750542807f062bf5a25/tumblr_inline_ml2h7p5naW1rfdbtm.gif");
  
}
#cont {
  max-width: 500px;
  position: relative;
  text-align: center;
  border-style: dashed;
  border-color: #4d155e;
  border-radius: 14px;
  padding: 40px;
  position: relative;
  top: -250px;
  right: 0px;
  background: #dfcde2;
}

#container1 {
  max-width: 500px;
  height: 300px;
  text-align: center;
  border-style: dashed;
  border-color: #4d155e;
  border-radius: 14px;
  padding: 30px;
  margin: 10px;
  background: #dfcde2;
  overflow-y:scroll;
}

#container2 {
  max-width: 500px;
  height: 300px;
  text-align: center;
  border-style: dashed;
  border-color: #4d155e;
  border-radius: 14px;
  padding: 50px;
  margin: 20px;
  background: #dfcde2;
  overflow-y:scroll;
}

#MikuX {
  position: fixed;
  bottom: 7;
  right: 500;
}
#MikuPoint {
  position: fixed;
  bottom: 0;
  right: 0;
}
#Mikustand {
  position: fixed;
  bottom: 0;
  right: 0;
}

