:root {
  --black: rgb(6, 6, 6);
  --white: rgb(245, 245, 245);
}

/* metal-mania-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Metal Mania";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/metal-mania-v22-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* libre-baskerville-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/libre-baskerville-v16-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* libre-baskerville-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Libre Baskerville";
  font-style: italic;
  font-weight: 400;
  src: url("/fonts/libre-baskerville-v16-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* libre-baskerville-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/libre-baskerville-v16-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

header {
  background-color: var(--black);
  height: 30vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

h3,
h4,
h5,
blockquote,
button,
input,
p,
a,
label {
  font-family: "Libre Baskerville";
}

h3 {
  font-size: 2.5rem;
}

p {
  font-size: 1rem;
  margin: 1rem 0;
}

blockquote {
  font-size: 2rem;
  align-self: center;
}

h4 {
  font-size: 2rem;
  margin: 3rem 0 0;
}

h5 {
  font-size: 1.5rem;
}

.bannerSchrift {
  color: var(--white);
  text-align: center;
  font-family: "Metal Mania";
  font-size: 5rem;
}

nav {
  margin: 1rem 0;
  display: flex;
}

ul {
  list-style: none;
  width: auto;
  margin: auto;
}

li {
  display: inline;
}

a {
  text-decoration: none;
}

.navLinks {
  color: var(--black);

  font-weight: 700;
  font-size: 2rem;
  padding: 1rem 4rem;
}

.navLinks:hover {
  color: var(--white);
  background-color: var(--black);
}

.contents {
  display: grid;

  grid-template-columns: 1fr 2fr 1fr;
}

.grid {
  display: grid;
  grid-template-columns: 4fr 2fr;
  gap: 2.5rem;
}

main div {
  margin: 1rem;
}

hr {
  border: 2px var(--black) solid;
  border-radius: 5px;
  margin: 3rem 0;
}

.zitat {
  display: flex;
  flex-direction: column;
  align-items: end;
  font-style: italic;
}

input {
  height: 3vh;
  width: 50%;
  margin: 1rem 0 0;
  font-size: 1rem;
  padding: 5px;
}

button {
  border: none;
  border-radius: 5px;
  font-size: 1.5rem;
  padding: 10px;
  font-weight: 700;
  color: var(--white);
  background-color: var(--black);
}

footer {
  background-color: var(--black);
  height: 30vh;
  width: 100%;
  margin-top: 1rem;
  padding: 5rem;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}

.copyrightLine {
  margin-top: 0;
  color: var(--white);
}

.footerLinks {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.footerLinks a {
  color: var(--white);
  margin-bottom: 1rem;
}

.shopGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.shopGrid img {
  width: 100%;
}

.shopHeadline {
  text-align: center;
  margin: 2rem 0 5rem;
}
.ueberUns {
  margin: 5rem 0 10rem;
}

.van {
  width: 20vw;
}
.kontakt {
  display: flex;
  flex-direction: column;
  margin: 2rem 0 10rem;
}

label {
  font-size: 1.5rem;
  margin: 1rem 0 0;
}

textarea {
  margin: 1rem 0;
  max-width: 50%;
}

.flexButton {
  position: absolute;
}

.impressum {
  margin: 2rem 0 15rem;
}

.impressum p {
  font-size: 1.25rem;
  line-height: 2rem;
}

#errorMessage {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#error1 {
  font-size: 20rem;
  font-family: Arial, Helvetica, sans-serif;
}

#error2 {
  font-size: 5rem;
  font-family: Arial, Helvetica, sans-serif;
}
