:root {
  --primary: #eb5a2b;
  --foreground: #2e0805;
  --background: #fff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: var(--foreground);
  background: var(--background);
  font-family: Saira, sans-serif;
  font-size: 24px;
  font-size: clamp(24px, 3.5vw, 32px);
  font-style: normal;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 62.5;
  font-weight: 900;
}

main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0rem;
}

.container {
  padding: 2rem;
  margin: 0 auto;
  width: 50rem;
  max-width: 100vw;
}

nav ul,
footer ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
}

section a {
  color: #cb3100;
  text-decoration: none;
}
section a:hover {
  text-decoration: underline;
}

nav a,
footer a {
  color: var(--foreground);
  padding: 0.5rem 0;
  margin: 0.5rem;
  display: flex;
  text-align: center;
  text-decoration: none;
}

nav ul {
  justify-content: space-around;
}

nav a {
  border-bottom: 0.2rem solid var(--primary);
  transition-duration: 0.1s;
  transition-timing-function: ease;
  transition-property: border-bottom padding-bottom;
}

nav a:hover {
  border-bottom: 0.45rem solid var(--primary);
  padding-bottom: 0.25rem;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem;
  margin-top: 0;
  font-weight: 400;
  font-size: 0.9rem;
}

section > * {
  width: 100%;
  max-width: 670px;
}

h1 {
  font-size: 2rem;
}

.agenda {
  padding-left: 2rem;
}

footer a {
  font-weight: 400;
  font-size: 0.7em;
}

footer a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 700px) {
  nav a,
  footer a {
    margin: 0.5rem 2rem;
  }

  nav ul {
    justify-content: center;
  }
}

@media screen and (min-width: 1300px) {
  main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "text"
      "links"
      "footer"
  }

  section {
    margin: 1.5rem;
    grid-area: text;
    font-size: 1.2rem;
    max-width: 800px;
    margin-top: 4rem;
    font-variation-settings: "wdth" 100;
    align-items: flex-start;
  }

  nav {
    grid-area: links;
  }

  nav ul,
  footer ul {
    justify-content: flex-start;
  }

  footer {
    grid-area: footer;
  }

  footer a {
    font-size: 0.7em;
  }
}

.zammad-form-control {
  border: 2px solid #c7c7c7;
  padding: 1rem;
}

.zammad-form-group {
  width: 100%;
}

.zammad-form .btn {
  background: #59e18e;
  font-size: 1rem;
  font-family: Saira, sans-serif;
  border: 1px solid #1cff9f;
  padding: 0.5rem 1rem;
}

.zammad-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
