#shutdown {
  height: 100vh;
  width: 100vw;

  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: absolute;
  top: 0;
  left: 0;

  z-index: 99999;

  background: #5a7edc;
}

#shutdown:hover {
  cursor: progress;
}

#shutdown_main {
  width: 100%;
  height: 70%;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.shutdown_dark {
  width: 100%;
  height: 15%;

  background: #012f9e;
}

.shutdown_top {
  border-bottom: 2px solid #b2d2ff;
}

.shutdown_bottom {
  border-top: 2px solid #b2d2ff;
}

.shutdown_icon {
  height: 30%;
  width: 60%;

  display: flex;
  justify-content: flex-end;
}

.shutdown_icon img {
  height: 100%;
}

#shutdown_text {
  height: 40%;
  width: 60%;

  display: flex;
  justify-content: flex-end;

  font-family: Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2rem;

  color: #fff;
}