@font-face {
  font-family: Unifont;
  src: url(assets/font/UnifontExMono.ttf);
  font-weight: normal;
}

@font-face {
  font-family: Unifont;
  src: url(assets/font/Pixellari.ttf);
  font-weight: bold;
}

@font-face {
  font-family: Ari;
  src: url(assets/font/ari-w9500-display.ttf);
  font-weight: bold;
}

html {
  font-family: Unifont;
  font-size: 16px;
  color: #5b59a7;
}

body {
  background-image: url(assets/resources/sky-b.png)
}

* {
  box-sizing: border-box;
}

p, h1, h2, h3, h4, li {
  margin: 0px;
}

li {
  margin-bottom: 5px;
}

ul {
  list-style: "/ " inside;
  margin: 0;
  padding: 7px;
}

u {
  color: #6f77e4;
  text-decoration: none;
}

a {
  color: #5b74ff;
  text-decoration: none;
}

a:hover {
  color: #ff5dd6;
}

h1 {
  font-family: Ari;
  font-weight: normal;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 44px;
  color: white;
  text-shadow: 0 0 10px #94a4ff;
  paint-order: stroke fill;
  -webkit-text-stroke: 2px #94a4ff;
  margin-bottom: 10px;
}

.window-title {
  border-radius: 3px 3px 0 0;
  color: white;
  paint-order: stroke fill;
  -webkit-text-stroke: 2px #5b74ff;
  font-size: 16px;
  font-weight: bold;
  padding: 7px;
  background: linear-gradient(#eff6ff, #acb9ff, #eff6ff);
  border: solid 1px #6f77e4;
  border-bottom: solid 1px #6f77e4;
  box-shadow: 1px 1px 0 #6f77e4;
}

.window-content {
  border-radius: 0 0 3px 3px;
  padding: 10px;
  background-color: #ffffff;
  border: solid 1px #6f77e4;
  border-top: none;
  box-shadow: 1px 1px 0 #6f77e4
}

/*
nav > .window-content {
  background: #ffffff;
  background-image:  linear-gradient(#e5edff 1px, transparent 1px), linear-gradient(to right, #e5edff 1px, #ffffff 1px);
  background-size: 20px 20px;
}
*/

/* checks containers 
div, header, nav, aside, footer, main, details, summary {
  border: solid 1px blue !important;
}
*/

.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}

.two-column {
  display: grid;
  grid-template-columns: 200px 650px;
  gap: 20px;
}

.columns {
  display: grid;
  grid-template: "col-1 col-2" / 1fr 1fr;
  gap: 10px;
}

.col-1 {
  grid-area: col-1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.col-2 {
  grid-area: col-2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

p + p {
  margin-top: 15px;
}

.callout {
  display: block;
  background: #e5edff;
  border: dashed 1px #acb9ff;
  padding: 7px;
  border-radius: 3px;
}

p + ul {
  margin-top: 10px;
}

.callout img {
  height: 100%;
  width: 100%;
  border: solid 1px #acb9ff;
  border-radius: 3px;
}

.button {
  display: block;
  background: #e5edff;
  border: solid 1px #acb9ff;
  padding: 7px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: bold;
}

.button:hover {
  background: #f5f7ff;
}

.button img {
  margin-right: 5px;
}

nav {
  position: sticky;
  top: 0;
  align-self: flex-start;
}

/* 
========================================
  SCROLLBAR 
========================================
*/

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 0px 3px 3px 0px;
  border-left: solid 1px #6f77e4;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(#acb9ff 50%, #eff6ff);
  border-radius: 3px;
  border: solid 1px #6f77e4;
  border-right: none;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #acb9ff;
}

::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: #acb9ff;
}

::selection {
  color: #fff;
  background: #5b74ff;
}