.devnull-popup-wrapper {
  position: fixed;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  background-color: rgba(42, 45, 52, 0.8);
  z-index: 200;
}

.devnull-hidden {
  display: none;
}

.devnull-popup {
  background-color: #ffffff;
  padding: 20px;
  position: relative;
  text-align: center;
}

@media only screen and (max-width: 749px) {
  .devnull-popup {
    max-width: 90%;
  }
}

@media only screen and (min-width: 750px) {
  .devnull-popup {
    max-width: 420px;
  }
}

.devnull-popup-closer {
  color: #ffffff;
  background-color: #2A2D34;
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  text-align: center;
  line-height: 25px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.devnull-popup h1 {
  background-color: #000000;
  color: #17BEBB;
}