body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: black;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.wip-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.wip-sign {
  width: 50vw;
  border: 2px white dashed;
  padding: 12px;
  margin: 40px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 12px;
  .header {
    font-size: 40px;
  }
}

.underline-text {
  text-decoration: underline;
}

.text-align-justify {
  text-align: justify;
}

.text-bold {
  font-weight: bold;
}

.wip-focus {
  color: lightskyblue;
  font-style: italic;
}

.wip-body {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: white;
}

.signature {
  opacity: 0.5;
  font-weight: bold;
  color: white;
  position: fixed;
  bottom: 20px;
  left: 20px;

  user-select: none;
  -webkit-user-drag: none;

}