@charset "utf-8";
/* CSS Document */
* {
  padding: 0;
  margin: 0;
  font-family: Verdana, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin: 10px 0;
  color: #EC2E38;
}
.WRAPPER {
  width: 90%;
  max-width: 960px;
  margin: 50px auto;
}
.DW_WRAPPER {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}
.TEXT {
  color: #EC2E38;
  background: white;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  border: 1px solid #EC2E38;
  border-radius: 0;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 20px;
  margin: 10px auto;
  width: fit-content;
}
a {
  text-decoration: none;
    color: inherit;
}
.TEXT:hover {
  color: #FFF;
  background: #EC2E38;
  opacity: 1;
}
.PIC img {
  width: 100%;
  border: 1px solid #DDDDDD;
}
.EINGANGSTEXT {
  margin-bottom: 50px;
  display: block;
}
@media only screen and (max-width: 600px) {
  .DW_WRAPPER {
    display: block;
  }
  .PIC {
    width: 100%;
  }
  .TEXT {
    margin-top: 20px;
    margin-bottom: 50px;
  }
}