body.maintenance-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../../images/maintenance/maintenance.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
body.maintenance-page header {
  background-color: transparent;
  padding: 50px;
  text-align: center;
}
body.maintenance-page header a {
  position: relative;
  display: block;
  margin: auto;
  margin-top: 50px;
  width: 70px;
  height: 62px;
  background-image: url(../../images/logo/clubmedlive-logo--white.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
body.maintenance-page header a img {
  display: none;
}
body.maintenance-page main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  width: calc(100% - 40px);
  max-width: 786px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 4px 4px rgba(69, 69, 69, 0.25);
  backdrop-filter: blur(2px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 20px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 980px) {
  body.maintenance-page main {
    font-size: 18px;
  }
}
body.maintenance-page h1 {
  font-size: 48px !important;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 980px) {
  body.maintenance-page h1 {
    font-size: 24px !important;
  }
}
body.maintenance-page .name-and-slogan {
  display: none;
}