body.loading {
  background-color: #181d3d;
}

h1.loading {
  color: #fff;
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fade-load 2s ease-in-out;
  animation-iteration-count: infinite;
  opacity: 0.5;
}

.edge-warning {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  color: white;
  text-align: center;
}

.edge-warning .content {
  max-width: 600px;
  margin: auto;
}

.edge-warning .logo {
  width: 35vw;
  min-width: 240px;
  max-width: 400px;
  display: block;
  margin: 32px auto;
}

.edge-warning h1 {
  text-align: center;
  text-transform: none;
}

.edge-warning p {
  margin-top: 32px;
  text-transform: none;
}

@keyframes fade-load {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
