/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lacquer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kings&display=swap');

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

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

  /* Text Colors: */
  --text-color: #e0e0e0;
  --sidebar-text-color: #e0e0e0;

  /* Text: */
  --font: Georgia, serif;
  --heading-font: 'UnifrakturMaguntia', sans-serif;
  --heading-lacquer: 'Lacquer', sans-serif;
  --heading-king: 'Kings', serif;
  --font-size: 13px;

  /* Other Settings: */
  --margin: 8px;
  --padding: 16px;
  --border: 2px solid #575757;
  --round-borders: 8px;
  --sidebar-width: auto;
  --button-color-hover: #0f0f0f;
}

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

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  display: flex;
  text-justify: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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("");
  
}

::-moz-selection {
  /* (Text highlighted by the user) */
  background: rgba(0, 229, 255, 0.739);
}

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

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: none;
}

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

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

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

.layout {
  width: auto;
  display: grid;
  grid-gap: var(--margin);
  -ms-grid-rows: auto var(--margin);
  -ms-grid-columns: var(--margin) auto var(--margin);
      grid-template: "header" auto "main" auto "footer" auto;
}

main {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: main;
  overflow-y: auto;
  padding: var(--padding);
  background: var(--content-background-color);
}

/* -------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------- */

header {
  justify-self: center;
  text-align: center;
  grid-area: header;
  font-size: 1.2em;
}

.header-content {
  padding: var(--padding);
}

.header-title {
  font-family: var(--heading-font);
  font-size: 1.5em;
  font-weight: bold;
}

.header-title-alt {
  font-family: var(--heading-lacquer);
  font-size: 1.5em;
  font-weight: bold;
}

.heading-king {
  font-family: var(--heading-king);
  font-size: 1.5em;
  font-weight: bold;
}

.header-subtitle {
  font-style: normal;
  font-size: 0.9em;
  margin-top: 0.25em;
  color: var(--text-color);
}

/* -------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------- */

footer {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  margin-top: var(--margin);
  grid-area: footer;
  overflow: hidden;
  font-size: 0.75em;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* -------------------------------------------------------- */
/* BUTTONS */
/* -------------------------------------------------------- */

.button {
  display: inline-block;
  justify-items: center;
  padding: 8px 16px;
  margin: 4px 2px;
  border: var(--border);
  border-radius: var(--round-borders);
  background: var(--sidebar-background-color);
  text-align: center;
  text-decoration: none;
  font-size: 1em;
}

button:hover {
  cursor: pointer;
}

/* -------------------------------------------------------- */
/* CONTENT */
/* -------------------------------------------------------- */

section {
  width: auto;
  margin: auto;
  justify-content: center;
  text-align: center
}

main {
  line-height: 1.5;
}

main a:hover,
main a:focus {
  -webkit-text-decoration-style: none;
          text-decoration-style: none;
          cursor: pointer;
}

main p,
main .image,
main .full-width-image,
main .two-columns {
  margin: 0.75em 0;
}

main center {
  margin: 1em 0;
  padding: 0 1em;
}

main hr {
  border: 0;
  border-top: var(--border);
  margin: 1.5em 0;
}

/* HEADINGS: */

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: var(--heading-font);
  margin-bottom: 0;
  line-height: 1.5;
}

main h1:first-child,
main h2:first-child,
main h3:first-child,
main h4:first-child,
main h5:first-child,
main h6:first-child {
  margin-top: 0;
}

main h1 {
  font-size: 1.5em;
}

main h2 {
  font-size: 1.4em;
}

/* -------------------------------------------------------- */
/* CONTENT IMAGES */
/* -------------------------------------------------------- */

.void {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

/* -------------------------------------------------------- */
/* ACCESSIBILITY */
/* -------------------------------------------------------- */

/* please do not remove this. */

#skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  -webkit-transform: translateY(-3rem);
      -ms-transform: translateY(-3rem);
          transform: translateY(-3rem);
  -webkit-transition: -webkit-transform 0.1s ease-in;
  transition: -webkit-transform 0.1s ease-in;
  -o-transition: transform 0.1s ease-in;
  transition: transform 0.1s ease-in;
  transition: transform 0.1s ease-in, -webkit-transform 0.1s ease-in;
  z-index: 99999999999;
}

#skip-to-content-link:focus,
#skip-to-content-link:focus-within {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/* -------------------------------------------------------- */
/* CONTAINER BOXES */
/* -------------------------------------------------------- */
.container-box {
    display: flex;
    width: 200px;
    height: 100px;
    padding: 4px;
    align-items: center;
    gap: 20px;
    }
.container-box-content {
    display: flex;
    padding: 24px 4px 4px 4px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    align-self: stretch;

    border-radius: 8px;
    background: #D1D3DD;
    }