.maintenance-mode {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
  background-color: #f5f2f6f3;
  color: #130101;
  text-align: center;
}
.maintenance-mode h1 {
  font-size: 3em;
  margin-bottom: 1em;
}
.maintenance-mode p {
  font-size: 2em;
  margin-bottom: 1em;
}

@media (max-width: 600px) {
  .maintenance-mode {
    height: 85vh;
  }
  .maintenance-mode h1 {
      font-size: 2.5em;
  }
  .maintenance-mode p {
      font-size: 1.75em;
  }
}