/* Font(s) */
@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
/* Colors */
/* Resets */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-size: 16px;
}

body {
  background: #b0413e;
  background: radial-gradient(circle, #b0413e 0%, #9d3a37 100%);
  font-family: "Poppins", sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.container header {
  display: flex;
}
.container header .maintenance-text {
  margin-left: 1rem;
}
.container header .maintenance-text p {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #eff1f3;
}
.container main {
  padding: 2rem 10rem;
  text-align: center;
  color: #e0e4e8;
  font-size: 2rem;
  font-weight: 500;
}
.container footer {
  text-align: center;
}
.container footer span {
  color: rgba(239, 241, 243, 0.85);
}
.container footer span a {
  color: inherit;
}

/* Media Queries (responsive) */
@media screen and (max-width: 767px) {
  html {
    font-size: 12px;
  }
  .container header .maintenance-logo img {
    width: 6rem;
  }
  .container header .maintenance-text p {
    font-size: 2rem;
  }
  .container main {
    padding: 0.2rem 1rem;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 14px;
  }
  .container main {
    padding: 1rem 5rem;
  }
}
@media screen and (min-width: 992px) {
  html {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */