* {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: rgb(255, 255, 255);
}

.light {
  font-weight: 100;
}

.bold {
  font-weight: 700;
}

.bright {
  color: rgba(255, 255, 255, 0.5);
}

header {
  position: sticky;
  top: 0;
  width: 100%;
}

.logo {
  height: 16px;
}

body {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  padding: 4rem;
  background-color: rgb(0, 0, 0);
  height: 100vh;
  width: 100vw;
  font-size: 16px;
  letter-spacing: 2px;
}

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

.button {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  letter-spacing: 2px;
  font-size: 12px;
  background-color: rgb(255, 152, 0);
  color: rgb(0, 0, 0);
  border-radius: 70px;
  padding: 0 15px 0 50px;
  height: 70px;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.button:hover {
  -webkit-transform: scale(1.015);
  transform: scale(1.015);
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}
.button:hover svg {
  -webkit-transform: scale(1.015);
  transform: scale(1.015);
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}
.button svg {
  margin: 0.5rem 0.5rem 0.5rem 2rem;
}

svg {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 10px;
  background-color: rgb(0, 0, 0);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

a {
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 4rem;
  overflow-y: auto;
  flex-grow: 1;
}
main > * {
  margin-bottom: 2rem;
}
main article {
  display: flex;
}
main article section {
  flex-grow: 1;
  flex-basis: 0;
}
main article section > * {
  margin-bottom: 2rem;
}
main::-webkit-scrollbar {
  width: 0.5rem;
}
main::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.general {
  margin-right: 4rem;
}

.start-main {
  align-items: flex-start;
}

.imprint-main, .contact-main {
  justify-content: flex-start;
}

h1 {
  font-size: 3rem;
  line-height: 1;
  margin-block-start: 0;
}

.domain-name {
  color: rgb(255, 152, 0);
}

@media (orientation: portrait) {
  main {
    padding-inline: 1rem;
  }
  h1 {
    font-size: 2rem;
  }
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: sticky;
  bottom: 0;
  width: 100%;
}
footer .circle-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
}
footer .circle-text-container .circle-text-svg {
  background: none;
  padding: 0;
  width: 130px;
  height: 130px;
}
footer .circle-text-container a {
  display: block;
  position: absolute;
}
footer .circle-text-container a .circle-arrow-svg {
  border: 1rem solid rgb(255, 152, 0);
  box-sizing: content-box;
  width: 20px;
  height: 20px;
}

form {
  display: inline-block;
  text-align: left;
}
form > * {
  margin-block: 1rem;
}
form input, form textarea {
  width: 100%;
  padding: 1rem;
  color: rgb(0, 0, 0);
}
form .form-bottom {
  display: flex;
  justify-content: space-between;
}
form .form-bottom .data-privacy-container {
  display: flex;
  align-items: center;
}
form .form-bottom .data-privacy-container #data-privacy-checkbox {
  height: 50%;
  width: 50%;
}
form .form-bottom .data-privacy-container #data-privacy-link {
  text-decoration: underline;
  color: rgb(255, 152, 0);
}

@media (orientation: portrait) {
  body, header, footer {
    padding-inline: 1rem;
  }
  form .form-bottom {
    flex-direction: column;
  }
  form .form-bottom > * {
    margin-bottom: 1rem;
  }
  form .form-bottom .data-privacy-container #data-privacy-checkbox {
    width: fit-content;
    margin-right: 1rem;
  }
}
.success {
  color: green;
  margin-block: 1rem;
}

.error {
  color: red;
  margin-block: 1rem;
}

/*# sourceMappingURL=style.css.map */
