@font-face {
  font-family: "Sugo Pro Classic";
  src: url("assets/fonts/SugoProClassic/Sugo-Pro-Classic-Bold-Italic.woff2")
    format("woff2");
  font-weight: 100 900;
  font-style: italic;
}

@font-face {
  font-family: "Arimo";
  src: url("assets/fonts/Arimo/Arimo-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
}

:root {
  --dark: #1d1d1b;
  --light: #9ba2a7;
}

body {
  font-family: "Arimo", sans-serif;
  font-weight: 100;
  margin: 0;
  padding: 2rem;
  text-align: center;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.85)
    ),
    url(assets/images/Hirte_Signet.svg);
  background-size: 100vh;
  background-repeat: no-repeat;
  background-position: bottom -10rem right -9rem;
}

* {
  box-sizing: border-box;
}

.logo {
  width: 40rem;
  max-width: 100%;
}

h1 {
  font-weight: 600;
  margin: 3rem 0;
  font-size: clamp(2rem, 2vw, 3rem);
  hyphens: auto;
  font-style: italic;
  font-family: "Sugo Pro Classic", sans-serif;
}

h2 {
  font-weight: 600;
  hyphens: auto;
  margin: initial;
  margin-bottom: 0.5rem;
  font-family: "Sugo Pro Classic", sans-serif;
}

h3 {
  margin: initial;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: "Sugo Pro Classic", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

section {
  max-width: 40rem;
  margin: 0 auto;
}

.information {
  display: flex;
  gap: 3rem;
  justify-content: flex-start;
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  max-width: 550px;
}

.contact {
  position: relative;
  column-gap: 3rem;
  row-gap: 1rem;
}

.information-inline {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  column-gap: 3rem;
  justify-content: flex-start;
  width: 100%;
}

@media screen and (min-width: 576px) {
  .information-inline {
    flex-direction: row;
  }
}

.information-company {
  text-align: left;
}
.information-group {
  text-align: left;
}

.logo-container-container {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.logo-container img {
  height: 3rem;
}

.logo-container a {
  display: block;
  padding: 0.5rem 1rem;
  background-color: var(--light);
  border-radius: 0.5rem;
  font-weight: 400;
}
