:root {
  --bg-gradient-light-green: radial-gradient(
    99.41% 1151.11% at 0% 2.11%,
    #ffffff 0%,
    #eaffff 36.98%
  );
}

body {
  font-family: "Lato", sans-serif;
  text-transform: none;
  margin: 0px;
  padding: 0px;
  background: var(--bg-gradient-light-green);
}

.wip-page-main {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.heading {
  display: flex;
  width: 70%;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1rem;
}

.kraftstage-logo-container {
  display: flex;
  width: 50%;
}

.kraftstage-logo {
  margin-right: 0px;
  margin-left: auto;
  height: 4vh;
}

.vertical-divider {
  height: 50%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.4);
}

.wip-text-container {
  width: 50%;
}

.wip-text-container__content {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
}

.working-man-illustration {
  transform: translateY(4rem);
}

@media (max-width: 1000px) {
  .heading {
    width: 100%;
    gap: 2rem;
  }
  .kraftstage-logo {
    height: 3vh;
  }

  .wip-text-container__content {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .heading {
    gap: 1rem;
  }

  .wip-text-container__content {
    font-size: 0.6rem;
    letter-spacing: 0.1rem;
  }

  .working-man-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
  }

  .working-man-illustration img {
    position: relative;
    margin: 0 auto;
    width: 90%;
  }
}

/* Foldables/thin screens */

@media (max-width: 300px) {
  .heading {
    flex-direction: column;
    margin-bottom: 1.5rem;
  }

  .wip-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .vertical-divider {
    display: none;
  }

  .kraftstage-logo {
    width: 100%;
    height: 100%;
    transform: scale(1.2);
  }

  .wip-text-container__content {
    font-size: 0.6rem;
  }
}
