@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.noscript {
  display: block;
  position: fixed;
  bottom: 16px;
  left: 16px;
  margin-right: 16px;
  z-index: 999;
  color: white;
  padding: 16px;
  background-color: red;
}

html {
  font-family: "Syne", monospace;
  font-weight: 450;
  font-size: 18px;
  line-height: 24px;
  color: red;
  background-color: white;
}
@media only screen and (min-width: 748px ) {
  html {
    font-weight: 420;
    font-size: 40px;
    line-height: 48px;
  }
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  display: block;
}

small, .comment__lang, h3 {
  font-size: 18px;
  line-height: 24px;
  display: block;
}
@media only screen and (min-width: 748px ) {
  small, .comment__lang, h3 {
    font-weight: 400;
  }
}

strong {
  font-weight: 590;
}

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: 0.015em;
}

h1 {
  font-size: 32px;
  line-height: 36px;
}

h3 {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
}

h4 {
  color: red;
  font-weight: 480;
  text-transform: uppercase;
  font-size: 22px;
  position: relative;
  display: block;
  margin-left: 40px;
}
h4::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 2px);
  left: -40px;
  background: red;
  width: 32px;
  height: 2px;
}

strong {
  letter-spacing: 0.04em;
}

h1 + p {
  margin-top: 24px;
}

a {
  color: red;
}
a:hover {
  color: red;
}
a:active {
  color: red;
}
a:visited {
  color: red;
}

:root {
  --primary: #2647ff;
  --grey--light: rgb(238, 238, 238);
  --grey: rgb(201, 201, 201);
  --grey--dark: rgb(168, 168, 168);
  --black: rgb(11, 11, 13);
  --dark: rgb(50, 50, 61);
  --white: rgb(245, 247, 247);
}

@media (prefers-color-scheme: dark) {
  :root {
    --primary: #2647ff;
    --grey--light: rgb(173, 173, 173);
    --grey: rgb(122, 122, 122);
    --grey--dark: rgb(87, 87, 87);
    --black: rgb(32, 32, 32);
    --dark: rgb(233, 233, 233);
    --white: rgb(12, 12, 12);
  }
}
@keyframes wiggle {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(-2px, -2px);
  }
  75% {
    transform: translate(2px, 2px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.nav {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
}
@media only screen and (min-width: 748px ) {
  .nav {
    left: 32px;
    top: 32px;
  }
}
.nav__list {
  list-style: none;
}
.nav__item {
  margin-top: -2px;
  border: 2px solid red;
  width: fit-content;
  transition: margin-left 0.18s ease;
}
.nav__item a {
  display: block;
  text-decoration: none;
  color: red;
  padding: 4px 8px 3px 8px;
  width: fit-content;
}
.nav__item.active {
  background: red;
}
.nav__item.active a {
  color: white;
}
.nav__item:hover {
  margin-left: 16px;
}

.footer__container {
  margin-right: auto;
  margin-left: auto;
  max-width: calc(100% - 32px);
  width: 2100px;
  padding-bottom: 16px;
}
@media only screen and (min-width: 748px ) {
  .footer__container {
    max-width: calc(100% - 64px);
  }
}
@media only screen and (min-width: 460px) {
  .footer__container {
    padding-bottom: 32px;
  }
}
.footer__instagram {
  display: block;
  border-radius: 100px;
  padding: 16px;
  border: 2px solid red;
  margin-bottom: 16px;
  text-align: center;
  text-decoration: none;
}
.footer__instagram:hover {
  background: red;
  color: white;
}
.footer__flexbox {
  border: 2px solid red;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 748px ) {
  .footer__flexbox {
    flex-direction: row;
    align-items: stretch;
  }
}
.footer__impressum {
  display: block;
}
.footer__column {
  flex: 2;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid red;
  font-size: 24px;
  line-height: 20px;
}
.footer__column:last-of-type {
  border-bottom: none;
}
@media only screen and (min-width: 748px ) {
  .footer__column {
    border-bottom: none;
  }
}
.footer__column--2, .footer__column--3, .footer__column--4 {
  flex: 1;
  padding: 0;
}
@media only screen and (min-width: 748px ) {
  .footer__column--2, .footer__column--3, .footer__column--4 {
    border-left: 2px solid red;
  }
}
.footer__duty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.footer__duty:hover {
  background: red;
  color: white;
}
.footer__head {
  margin-bottom: 32px;
}
@media only screen and (min-width: 748px ) {
  .footer__head {
    font-size: 3vw;
    line-height: 3.5vw;
    margin-bottom: 0;
  }
}
.footer__creator {
  margin-left: auto;
  width: fit-content;
  padding: 8px 32px;
  margin-top: 16px;
  border: 2px solid red;
  border-radius: 100px;
}

.logo {
  display: block;
  text-decoration: none;
  background: red;
  color: white !important;
  padding: 4px 8px 3px 8px;
  width: fit-content;
  margin-bottom: 32px;
  transition: margin-left 0.18s ease;
}
@media only screen and (min-width: 748px ) {
  .logo {
    margin-bottom: 64px;
  }
}
.logo:hover {
  color: inherit;
  margin-left: 16px;
}

.comment {
  padding-top: 32px;
  padding-bottom: 32px;
  margin-right: 16px;
  margin-left: 16px;
  font-weight: 450;
  font-size: 18px;
  line-height: 24px;
  color: red;
  background-color: white;
}
@media only screen and (min-width: 748px ) {
  .comment {
    font-weight: 420;
    font-size: 30px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 748px ) {
  .comment {
    margin-right: 32px;
    margin-left: 32px;
  }
}
.comment__title {
  font-size: 7.2vw;
}
@media only screen and (min-width: 748px ) {
  .comment__title {
    font-size: 3.2vw;
  }
}
.comment__container {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 64px;
}
.comment__lang {
  width: fit-content;
  border: 2px solid red;
  padding: 6px 12px;
  border-radius: 100px;
  margin-top: 16px;
  margin-bottom: 16px;
  text-decoration: none;
}
.comment__lang:hover {
  animation-name: wiggle;
  animation-duration: 0.05s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 0s;
  background: red;
  color: white !important;
}
.comment h2 {
  font-weight: 450;
  line-height: 1.1em;
}
.comment h2 + p {
  margin-top: 24px;
}
@media only screen and (min-width: 748px ) {
  .comment h2 + p {
    margin-top: 48px;
  }
}
.comment ol {
  margin-left: 32px;
}
.comment ol + p {
  margin-top: 32px;
}
.comment ol + h2 {
  margin-top: 32px;
}
.comment p {
  hyphens: auto;
}
.comment p + p {
  margin-top: 32px;
}
.comment p + ol {
  margin-top: 32px;
}
.comment p + h2 {
  margin-top: 48px;
}
@media only screen and (min-width: 748px ) {
  .comment p + h2 {
    margin-top: 96px;
  }
}
