.maintenance-background {
  width: 90%;
  height: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}
.maintenance-background > .logo-container {
  width: 36%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.maintenance-background > .logo-container > img {
  width: 70%;
}
.maintenance-container {
  width: 64%;
  height: 100%;
  background-color: #eaeaea;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 3rem;
  padding-inline: 10px;
}
.maintenance-container > img {
  width: 65%;
  margin-bottom: 2rem;
}
.maintenance-container > p {
  font-size: 18px;
  text-align: center;
}
.maintenance-image {
  height: 10px;
}
@media screen and (max-width: 800px) {
  /*Fixing mobile screens unable to scroll*/
  .background {
    align-items: flex-start !important;
    /* Move content to top so we can scroll down */
    height: auto !important;
    /* Allow the page to grow beyond the screen height */
    min-height: 100vh;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .maintenance-background {
    flex-direction: column;
    height: auto !important;
    /* Override the 80% height from desktop */
    width: 95%;
    margin-top: 0;
  }
  .maintenance-background > .logo-container {
    width: 100%;
    height: auto !important;
    padding: 2rem 0;
  }
  .maintenance-background > .logo-container > img {
    width: 200px;
  }
  .maintenance-container {
    width: 100%;
    height: auto !important;
    /* Let the gray box grow with the text */
    padding-bottom: 3rem;
  }
  .maintenance-background {
    flex-direction: column;
    height: initial;
  }
  .maintenance-background > .logo-container {
    width: 100%;
    height: initial;
    padding-top: 2rem;
    background: #eaeaea;
  }
  .maintenance-background > .logo-container > img {
    width: 250px;
  }
  .maintenance-container {
    width: 100%;
  }
  .maintenance-container > img {
    width: 80%;
    margin-bottom: 1rem;
  }
  .maintenance-container > p {
    font-size: 16px;
    width: 90%;
  }
  .maintenance-container > #rota-link {
    font-size: 14px;
    padding-top: 2rem;
  }
}
