:root {
  --primary-color: #0050FF;
  --dark-gray: #757575;
  --wlk-border-radius: 4px;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background-color: #ffffff;
  color: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}

.maintenance-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.logo-img {
  /* background-image: url('resources/img/logo.svg'); */
  display: inline-block;
  max-height: 50px;
  height: 50px;
  max-width: 180px;
  width: auto;
}

.svg.container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  display: block
}

header {
  margin-top: 2rem;
}

main {
  flex-grow: 1;
  padding: 2rem;
}

img {
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: 2rem;
  margin: 1.5rem 0 1rem;
  line-height: normal !important;
  hyphens: auto;
  overflow-wrap: anywhere;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}

p {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}

.button:focus {
  outline-width: 2px;
  outline-style: solid;
  outline-offset: 4px;
  border-radius: 4px;
  outline-color: var(--primary-color);
}

footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 1rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  min-height: 33px;
}

footer a {
  color: #fff;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

footer a:focus {
  outline-width: 2px;
  outline-style: solid;
  outline-offset: 4px;
  border-radius: 4px;
  outline-color: inherit;
}