@charset "utf-8";

:root {
  font-size: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #333;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  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;
}

h1 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 1rem 0 .625rem;
  text-align: center;
  text-transform: uppercase;
}

h2 {
  font-size: 1.375rem;
  margin: 2rem 0 .625rem;
  color: #b3282d;
}

:is(a:link, a:visited, a:hover, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

a.link {
    text-decoration: underline;
     color: #b3282d;
}
a.link:hover {
    text-decoration: none;
}

a.web {
  color: #f93822;
}
a.web:hover {
  color: #ff897b;
}

p {
  margin: 0 0 1rem;
}

span {
  white-space: nowrap;
}

ul {
  list-style: square;
  margin: 0 0 1.25rem 1.25rem;
}
ul li::marker {
  color: #b3282d;
}
ul li {
  margin-bottom: 0.25rem;
}


header img {
  width: 13rem;
  padding: 1rem 2rem;
}

article {
  padding: 2rem;
}

a.color {
  color: #fff;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer {
  background-color: #e1e1e1;
  padding: 2rem;
}

footer p {
  color: #000;
  text-align: center;
  margin: 0;
}

.button {
    display: flex;
    justify-content: center;
    margin: 3rem 0 2rem;
}

a.apply {
    border: 1px solid #b3282d;
    background-color: #b3282d;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
}
a.apply:hover {
  background-color: #fff;
  color: #b3282d;
}



@media only screen and (max-width: 49.937rem) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }

  p,
  ul {
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }

  h1 {
    font-size: 1.5rem;
  }

  header img{
    padding: 1rem;
    width: 10rem;
  }

  article,
  footer {
    padding: 1rem;
  }
}
