/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

:root {
    --accent1: #DFF321;
    --accent2: #573280;
    --text: #FFA9E7;
    --bg-color: #0B0B09;
    --bg-color2: #141415;
}

.silkscreen-regular {
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.silkscreen-bold {
  font-family: "Silkscreen", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.kode-mono {
  font-family: "Kode Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

a:hover {
  letter-spacing: 0.2rem;
}

a {
      color: inherit;
  text-decoration: inherit;
}

body {
  background-color: var(--bg-color);
  color: var(--text);
  font-family: "Kode Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  cursor: url("https://cur.cursors-4u.net/special/spe-3/spe300.png"), pointer;
  text-transform: lowercase;
}

details > body {
    background-color: red;
}

details > summary::marker {
    display: none;
    content: "";
}

details:open > summary {
    color: transparent;
}

details > summary:hover {
  letter-spacing: 0.2rem;
}

h1, h2 {
    color: var(--accent1);
    font-family: "Silkscreen", monospace;
    font-weight: normal;
}

.layout {
  width: 75%;
  height: 80vh;
  margin: 5vh auto auto auto;

  display: grid;
  grid:
    "header header header" auto
    "leftSide body rightSide" 1fr
    "footer footer footer" auto
    / 0.3fr 1fr 0.3fr;
  gap: 10px;

}

.layout > * {
  border: dotted;
  border-width: thin;
  border-color: var(--accent2);
  padding: 25px;
  background-image: radial-gradient(rgb(87, 50, 128) 0.75px, transparent 0.75px), radial-gradient(rgb(87, 50, 128) 0.75px, rgb(20, 20, 21) 0.75px); background-size: 30px 30px; background-position: 0px 0px, 15px 15px;
  overflow: auto;
}

.header { grid-area: header;
  text-align: center;
  border: none;
  background-image: none;
 }
.leftSide { grid-area: leftSide; }
.body { grid-area: body; }
.rightSide { grid-area: rightSide; }
.footer { grid-area: footer;
  text-align: center;
  border: none;
  background-image: none;}


