body {
  margin: 0;
  padding: 0;
  background: #000;
}

* {
  box-sizing: border-box;
}

.maintenance {
  background-image: url('maintenance-bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.maintenance_content {
  background-color: #fcfdf5;
  border-radius: 25px;
  width: 500px;
  border: none;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 25px;
  box-shadow: 5px 5px 5px lightgray;
}

@media (max-width: 576px) {
  .maintenance_content {
    width: 95%;
  }
}

.maintenance_content img {
  width: 150px;
  height: auto;
}

.maintenance_content_title {
  color: grey;
  font-family: "Trebuchet MS", sans-serif;
  font-weight: bold;
  font-size: 40px;
  margin-block: 2rem;
  text-align: center;
  display: block;
  word-break: break-word;
}

.maintenance_content_description {
  color: grey;
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 400;
  font-size: 18px;
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: center;
}

.maintenance_content_description p {
  margin: 0;
}