html,
body {
  margin: 0;
  padding: 0;
}
body {
  background-color: black;
  color: white;
}

h1,
h2 {
  text-shadow: 0 0 7px #f73dfb, 0 0 15px #f73dfb, 0 0 20px #f73dfb,
    0 0 30px #f73dfb, 0 0 40px #f73dfb;
  margin-left: 10px;
  margin-right: 10px;
}

h2 {
  margin-bottom: 50px;
}

.maintenance {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.maintenance::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("background.jpeg") no-repeat center center fixed;
  background-size: cover;
  filter: blur(8px);
  opacity: 0.2;
  z-index: -1;
}

.maintenance h1,
.maintenance img {
  position: relative;
  z-index: 1;
}

.maintenance img {
  max-width: min(400px, 90%);
}
