/* variables */
/* general layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: white;
  font-size: 16px;
}

body {
  display: flex;
  position: relative;
  height: 100vh;
  padding: 1rem;
  justify-content: center;
  align-items: center;
}

img {
  max-width: 100%;
}

body,
button {
  font-size: 1rem;
  font-family: Barlow, sans-serif;
}

body * {
  color: black;
  text-decoration: none;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

header {
  margin-bottom: 2rem;
}

section {
  margin: 2rem 0 1rem 0;
}

#kontakt ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  justify-content: center;
  align-items: center;
}
#kontakt li a {
  display: block;
  border: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
}
#kontakt li a svg {
  display: block;
  float: left;
  margin: 2px 0.5rem 0 0;
}

#arbeiten #arbeiten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1em;
}
#arbeiten a {
  position: relative;
  display: block;
  width: 160px;
  border-radius: 1rem;
  line-height: 0;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

footer {
  position: absolute;
  bottom: 1em;
  right: 1em;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
footer p {
  font-size: 0.6rem;
  text-align: right;
}
footer a {
  text-decoration: underline;
}

@media screen and (max-width: 700px) {
  body {
    display: block !important;
    margin: 2rem;
    height: auto;
  }
  #arbeiten-grid {
    display: block !important;
  }
  #arbeiten-grid a {
    width: auto;
    margin-bottom: 1rem;
  }
  #kontakt ul {
    display: block;
  }
  #kontakt li {
    margin: 0 0 0.5rem 0;
  }
  footer {
    position: relative;
    bottom: -2rem;
    right: -2rem;
    margin-top: 2rem;
    padding: 0;
    background: none;
  }
}/*# sourceMappingURL=style.css.map */