/* ----------------------------------------------------------------------------
 * RESET
 * --------------------------------------------------------------------------*/

html,
body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: #002a61;
}

/* ----------------------------------------------------------------------------
 * FONTS
 * --------------------------------------------------------------------------*/
.roboto-regular {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-bold {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* ----------------------------------------------------------------------------
 * CONTENT
 * --------------------------------------------------------------------------*/

.content-wrapper {
  min-height: calc(100vh - 103px);
  background: #f2f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maintenance {
  text-align: center;
}

.maintenance__image {
  margin-right: 50px;
  margin-left: 50px;
}

.maintenance__image > img {
  width: 200px;
  border: 1px solid #002a61;
  border-radius: 20px;
}

.maintenance__title {
  margin-top: 20px;
  font-size: 1.5rem;
}

.maintenance__text {
  margin: 20px;
}

/* ----------------------------------------------------------------------------
 * FOOTER
 * --------------------------------------------------------------------------*/

.footer__content {
  background: #002a61;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 18px 18px 35px 18px;
  font-size: 0.75rem;
  font-family: sans-serif;
}

.footer__content img {
  width: 30px;
  flex-grow: 0;
  flex-shrink: 0;
}

.footer__content p {
  flex-grow: 1;
  text-align: right;
}
