/***
*** Resets
***/
/* Box-sizing für alle Elemente */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Margins/Paddings entfernen */
* {
  margin: 0;
  padding: 0;
}

/* HTML & Body Grundlagen */
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Listen */
ul, ol {
  list-style: none;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Medien */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Formulare */
input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Tabellen */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/***
*** Styles
***/
:root {
    --bg: #131313;
    --text: #eceff4;
    --accent: #a3be8c;
    --border: #4c566a;
    --shadow: #3b4252;
    --headline: #d8dee9;
    --headline: #4c566a;
}

body {
    display: flex;
    justify-content: center;
    background: var(--bg);
    color: var(--text);
}

main {
    max-width: 430px;
    margin: 1em;
}

section {
    padding: 1em;
    margin-bottom: 1em;
    border: solid 1px var(--border);
    box-shadow: 0.2em 0.2em var(--shadow);
}

h1, h2, h3, h4 {
    color: var(--headline);
    margin-bottom: 0.5em;
    font-family: monospace;
}

h2, h3, h4 {
    margin-top: 1em;
}

p {
  margin-bottom: 1em;
}

article header .avatar {
    max-width: 100px;
    border: solid 1px var(--border);
    box-shadow: 0.2em 0.2em var(--shadow);
}

article header {
    display: flex;
    justify-content: space-between;
    justify-items: flex-start;
    margin-bottom: 0.5em;
}

article .summary {
    margin-bottom: 1.5em;
    color: var(--headline);
    line-height: 1em;
    font-size: small;
}


.Home .Links ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.Home .Links li {
    display: inline;
}

.Home .Links a {
    border: solid 1px var(--border);
    box-shadow: 0.1em 0.1em var(--shadow);
    padding-left: 0.3em;
    padding-right: 0.3em;
    padding-top: 0.1em;
    padding-bottom: 0.1em;
}

hr {
  border: none;
  border-bottom: dashed 1px var(--border);
}