main {
  position: relative;
  display: flex;
  justify-content: center;
}
#under-construction {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}
#under-construction > * {
  display: block;
  max-width: 50rem;
}
#under-construction img {
  max-width: 27rem;
}
#under-construction h1 {
  font-family: 'Akshar';
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 2rem;
}
#under-construction p {
  color: var(--color-zinc-400);
  font-size: 1.8rem;
}
#under-construction form {
  margin-top: 5rem;
  width: 100%;
}
#under-construction label {
  color: var(--color-zinc-400);
  text-align: left;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
#under-construction input {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  font-size: 1.6rem;
  padding: 0 1.5rem;
  width: 100%;
  height: 6rem;
  margin-bottom: 2rem;
}
#under-construction button {
  width: 100%;
  height: 6rem;
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 850px) {
  #under-construction {
    flex-direction: column;
    justify-content: center;
  }
    #under-construction img {
    margin-bottom: 5rem;
  }
}