.outer_under_construction_container {
  width: 100%;
  min-height: 100vh;
  background-color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer_under_construction_container::before {
  content: '';
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  background-image: url(../img/under_construction_background.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: soft-light;
}
.outer_under_construction_container .under_construction_container {
  font-family: Sans-Serif;
  max-width: 650pt;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-color: #FFFFFFF2;
  padding: 20pt;
  box-sizing: border-box;
  box-shadow: 0px 0px 28px -5px #000000AA;
  border-radius: 5pt;
}
.outer_under_construction_container .created_with_container {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
}
.outer_under_construction_container .created_with_container > * {
  font-family: Sans-Serif;
  width: 100%;
  text-align: center;
  padding: 20pt;
  font-size: 9pt;
  opacity: 0.7;
}
.outer_under_construction_container .created_with_container * {
  color: #FFFFFF;
}
