.flex, .flex-column, .flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.f-align-self-center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.f-justify-self-center {
  -ms-grid-column-align: center;
      justify-self: center;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  font-family: "Work Sans";
  color: inherit;
}

#wip-box {
  width: 90%;
  border-radius: 10px;
  max-width: 600px;
  padding: 100px 40px 40px;
  background-color: #ffffff;
  position: relative;
  -webkit-box-shadow: 0 0 20px rgba(40, 40, 40, 0.15);
          box-shadow: 0 0 20px rgba(40, 40, 40, 0.15);
}

#wip-box #wip-icon {
  width: 140px;
  height: 140px;
  border: 2px solid #e5e5e5;
  border-radius: 3000px;
  font-size: 40pt;
  color: #c4c4c4;
  position: absolute;
  background-color: #ffffff;
  top: -70px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

#wip-box #wip-content {
  text-align: center;
  color: #282828;
}

#wip-box #wip-content h1 {
  font-weight: 400;
}

#wip-box #wip-content p {
  font-weight: 500;
}

body {
  background-color: #e5e5e5;
  min-height: 100vh;
  min-width: 100vw;
}
/*# sourceMappingURL=main.css.map */