@charset "utf-8";

:root {
  font-size: 16px;
}

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.eot');
  src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'),
    url('../fonts/roboto-v30-latin-regular.woff') format('woff'),
    url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'),
    url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v30-latin-500.eot');
  src: url('../fonts/roboto-v30-latin-500.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-v30-latin-500.woff2') format('woff2'),
    url('../fonts/roboto-v30-latin-500.woff') format('woff'),
    url('../fonts/roboto-v30-latin-500.ttf') format('truetype'),
    url('../fonts/roboto-v30-latin-500.svg#Roboto') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700.eot');
  src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'),
    url('../fonts/roboto-v30-latin-700.woff2') format('woff2'),
    url('../fonts/roboto-v30-latin-700.woff') format('woff'),
    url('../fonts/roboto-v30-latin-700.ttf') format('truetype'),
    url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Fira Sans Condensed';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/fira-sans-condensed-v10-latin-500.eot');
  src: url('../fonts/fira-sans-condensed-v10-latin-500.eot?#iefix') format('embedded-opentype'),
    url('../fonts/fira-sans-condensed-v10-latin-500.woff2') format('woff2'),
    url('../fonts/fira-sans-condensed-v10-latin-500.woff') format('woff'),
    url('../fonts/fira-sans-condensed-v10-latin-500.ttf') format('truetype'),
    url('../fonts/fira-sans-condensed-v10-latin-500.svg#FiraSansCondensed') format('svg');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #333;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  background: #fff url(../images/hintergrund.jpg) no-repeat top center;
  background-size: cover;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
}

#wrapper {
  position: relative;
  max-width: 50rem;
  margin: 1rem auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
}

h1,
h2 {
  font-family: 'Fira Sans Condensed', Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

h1 {
  font-size: 1.875rem;
  line-height: 1.3;
  margin: 0 0 .625rem;
}

h1 + p {
  font-size: 1.125rem;
  font-weight: 700;
  border-bottom: solid 1px #000;
  padding: 0 0 1rem;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

h2 {
  font-size: 1.375rem;
  margin: 2rem 0 .625rem;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

a.link {
    text-decoration: underline;
}
a.link:hover {
    text-decoration: none;
}

a.web:hover {
  color: #e3000f;
}

p {
  margin: 0 0 1rem;
}

span {
  white-space: nowrap;
}

ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

ul li {
  padding-left: 1.375rem;
}

ul li:before {
  content: "\25A0";
  float: left;
  margin-left: -1.375rem;
  font-size: .75rem;
  line-height: 1.6;
  font-family: "Arial", sans-serif;
}

article {
  padding: 2rem 3rem;
}

footer {
  background: #000000;
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
}

footer p {
  color: #fff;
  margin: 0;
}

a.color {
  color: #fff;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer a.link2 {
  color: #fff;
}
a.link2:hover {
    color: #666565;
}


.button {
    display: flex;
    margin: 3rem 0 2rem;

}

a.apply {
    border: 1px solid #000;
    padding: 0.75rem 3.5rem;
    font-weight: 700;
}
a.apply:hover {
    background-color: #000;
    color: #fff;
}


@media only screen and (max-width: 49.937rem) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 1rem;
  }

  p,
  ul {
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin: 0 0 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h1 + p {
    margin: 0 0 1rem;
  }

  article {
    padding: 1rem;
  }

  footer {
    padding: 1rem;
  }
}

@media only screen and (max-width: 30rem) {
  article {
    padding: 1rem 0 0;
  }

  footer {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  footer p {
    text-align: center;
  }
}