
* {
  box-sizing: border-box;
}

:root {

  /* Text Colors: */
  --text-color: #372619;
  --sidebar-text-color: #372619;
  --link-color: #c38556;
  --link-color-hover: #704c31;

  /* Text: */
  --font: Monaco, monospace;
  --heading-font: 'Open-Dyslexic', sans-serif;
  --font-size: 14px;

  /* Other Settings: */
  --margin: 10px;
  --padding: 14px;
  --border: 2px solid #f9a59a;
  --round-borders: 6px;
  --sidebar-width: 194px;
  --display: flex;
  --justify-content: center;
  --align-items: center;
}

body {
	background: url("https://seleane.neocities.org/files/letterpaper.jpg");
	background-repeat: no-repeat;
  background-size: cover;
	display: flex;
  align-items: flex-start;
  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;
  cursor: url("https://seleane.neocities.org/files/cursor-sparkle.gif"), auto;
}

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

mark {
  /* Text highlighted by using the <mark> element */
  text-shadow: 1px 1px 4px var(--link-color);
  background-color: inherit;
  color: var(--text-color);
}

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

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

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

/* -------------------------------------------------------- */
/* LAYOUT */
/* -------------------------------------------------------- */

.layout {
  width: 600px;
  display: grid;
  grid-gap: var(--margin);
  grid-template:
    "header" 600px
    "space" 600px
    "main" 600px
    "pages" 600px;
}
  /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */


.header {
  grid-area: header;
  height: 150px;
  font-size: 1.2em;
  border: var(--border);
  border-radius: var(--round-borders);
  background: var(--content-background-color);
  padding: var(--padding);
}

.space {
  grid-area: space;
  height: 175px;
}

.main {
  grid-area: main;
  padding: var(--padding);
  background: var(--content-background-color);
  border: var(--border);
  border-radius: var(--round-borders);
}

.pages {
  grid-area: pages;
  align-self: flex-start;
  border: 2px solid #f9a59a;
  border-radius: var(--round-borders);
  max-height: 220px;
  overflow-y: auto;
  padding: 14px;
}




