/* ANCHOR Fonts*/

@font-face {
  font-family: "SourceCode";
  src: url(../Fonts/SourceCodePro-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SourceCode";
  src: url(../Fonts/SourceCodePro-Italic.ttf) format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "SourceCode";
  src: url(../Fonts/SourceCodePro-ExtraLight.ttf) format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SourceCode";
  src: url(../Fonts/SourceCodePro-ExtraLightItalic.ttf) format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

/* ANCHOR Custom Properties */

body {
  --color-black: #191919;
  --color-white: #e1e1e1;
  --color-grey: #898989;
  --color-green: #13f270;
  --color-yellow: #c1de04;
  --color-red: #fc1a52;
  --color-blue: #0398ee;

  --font: "SourceCode", monospace;
  --line: 2.5ch;
  --font-scale: 0.2vw;
  
}


body.invert {
  --color-black: #ffffff;
    --color-white: #060606;
    --color-grey: #616161;
    --color-green: #13f270;
    --color-yellow: #dea404;
    --color-red: #fc1a52;
    --color-blue: #0398ee;
}

/* ANCHOR Main Style */

* {
  box-sizing: border-box;
}


body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-style: normal;
  font-size: calc(1.1rem + var(--font-scale));
  line-height: var(--line);
  color: var(--color-grey);
  background-color: var(--color-black);
}

header, main, footer {
  width: 100%;
  max-width: 1260px;
  height: 100%;
  
  margin:  auto;
  padding: 10px;
  text-align: left;
  
}



/* ANCHOR Content Style */

h1 {
  
  font-size: calc(1.4rem + var(--font-scale));
  font-weight: 200;
  line-height: var(--line);
  margin: 0;
}

h2 {
  color: var(--color-blue);
  font-size: calc(1.6rem + var(--font-scale));
  font-weight: 200;
  line-height: var(--line);
  margin: 0;
}

h3 {
  color: var(--color-blue);
  font-size: calc(1.5rem + var(--font-scale));
  font-weight: 200;
  line-height: var(--line);
  margin: 0;
}

a {
  text-decoration: none;
  border: 1px solid #c72727 ;
  padding: 1px;
  
}

/* ANCHOR Navigation */

nav > ul {
  margin-top: 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

/* ANCHOR Link Color */

.link-yellow {
  color: var(--color-yellow);
  border: 1px solid #c72727;
  padding: 1px;
  cursor: pointer;
}

/* ANCHOR Text Color */

.text-red {
  color: var(--color-red);
  margin-bottom: 20px;
  
}

.text-white {
  color: var(--color-white);
}

.text-blue {
  color: var(--color-blue);
}

.text-yellow {
  color: var(--color-yellow);
}

/* ANCHOR Footer styles */

footer > ul {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

/* ANCHOR Lauftext */

.lauftext {
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 10px;
  color: var(--color-green);
  font-size: calc(1.7rem + var(--font-scale));
  line-height: 40px;
}

/* ANCHOR Input Design*/

main > form > input {
  height: 25px;
  display: flex;
  margin-top: 0px;
  width: 150px;
}

button {
  width: 160px;
  height: 30px;
  margin: 15px;
  
}

/* ANCHOR Images */

.images {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

/* ANCHOR Scrollboxen */

.scrollbox {
  height: 170px;
    /* set the height of the scrollbox */
  width: 290px;
    /* set the width of the scrollbox */
    
  overflow: auto;
    /* enable the scrollbar */
  margin-top: 10px; 
}