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

body {
  height: 100vh;
  width: 100vw;
  background-color: #eaeaea;
  font-family: "Open Sans";
}

a, h1, h2, h3, h4, h5, li, p, ul {
  text-decoration: none;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #607893;
}

.main {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.hero {
  margin-bottom: 5rem;
}

.hero > img {
  width: 700px;
}

.contact {
  text-align: center;
}
.contact p {
  font-weight: 600;
  margin-bottom: 1rem;
}

footer {
  position: absolute;
  bottom: 0;
  padding-bottom: 15px;
}

.impressum {
  position: absolute;
  bottom: 50px;
}

.body {
  height: 100dvh;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  text-align: center;
  flex-direction: column;
}

@media only screen and (max-width: 700px) {
  .main {
    font-size: 0.8rem;
  }
  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
  }
  .hero img {
    max-width: 100%;
  }
  .contact p {
    margin-bottom: 0.3rem;
  }
}/*# sourceMappingURL=styles.css.map */