/* Global styles and resets */

h1, h2, h3, body, html, div, p, footer, main { margin: 0; padding: 0; box-sizing: border-box; }

body,
html {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #121212;
  color: white;
  min-height: 100vh;
  position: relative;
}

a {
  color: #fff;
  text-decoration: none;
  transition: 0.25s opacity;
}

a:hover {
  opacity: .66;
}

h1 {
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

/* Coming Soon page */

.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px 20px 20px;
  height: 100vh;
  position: relative;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.logo {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.logo img {
  max-width: 200px;
}

.content-center {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 720px;
}
.address {
  margin: 44px 0;
  margin-top: 192px;
  line-height: 1.6;

  p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
  }
}
.address p {
  margin: 5px 0;
}
.notify-form {
  margin-top: 44px;
}
form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}
input {
  flex-grow: 1;
  padding: 12px 18px;
  border-radius: 100px;
  border: none;
  outline: none;
  background-color: white;
  color: #100d08;
  font-size: 18px;
}
button {
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-left: 4px;
}
button:hover {
  background-color: white;
  color: black;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100vw;
  padding: 12px;
  text-align: center;
}

/* Imprint styles */

.imprint-wrapper {
  padding: 40px 20px 20px 20px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.33;
}

.imprint-wrapper h1 {
  margin-top: 60px;
  text-align: center;
}

.data-row {
  display: flex;
  gap: 16px;
}

.data-row__key {
  width: 136px;
  color: #b5b5b5;
  flex: 1;
}

.data-row__value {
  flex: 1;
  word-break: break-word;
}

.data-row__value span {
  color: #b5b5b5;
}

.imprint-wrapper .logo {
  position: relative;
  top: 0;
  left: 0;
  margin-top: 60px;
  transform: none;
  margin-left: auto;
  margin-right: auto;
}

/* Footer styles */

.footer__link {
  display: inline-block;
  padding: 6px;
  color: #fff;
  text-decoration: none;
  transition: 0.25s opacity;
  opacity: .66;
}

.footer__link:hover {
  opacity: 1;
}

/* Responsive styles */

@media (max-width: 681px) {
  .logo {
    top: 70px;

    img {
      max-width: 120px;
    }
  }
  .content-center {
    top: 50%;
  }
  h1 {
    font-size: 40px;
  }
  .address {
    margin-top: 96px;
    p {
      font-size: 16px;
      line-height: normal;
    }
  }
  form {
    flex-direction: column;
    margin: 0 26px;
    gap: 16px;
  }

  /* Imprint responsive */
  .imprint-wrapper h1 {
    margin-top: 0;
  }
  .imprint-wrapper .logo {
    display: none;
  }
  .data-row {
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }
  .data-row__key {
    width: auto;
  }
}

@media (max-height: 800px) {
  .coming-soon {
    display: block;
    height: auto;
  }
  .content-center {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: 180px;
    height: auto;
  }
  .address {
    margin-top: 124px;
  }
  .footer {
    position: relative;
  }
}