@import url("theme.2a776e521cae.css");

body {
  background-color: var(--background-color);
  color: var(--text-color);
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-family);
  font-size: 18px;
}

main {
  padding: 0 20%;
  flex: 1;
  box-sizing: border-box;
}

header {
  background: var(--header-bg);
  flex: 0 0 auto;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 20%;
}

header a {
  color: inherit;
  text-decoration: none;
}

footer {
  padding: 0 20%;
  flex: 0 0 auto;
  background-color: var(--footer-bg-color);
}
footer ul {
  list-style-type: none;
}
footer a {
  color: black;
  text-decoration: none;
}

a {
  color: var(--orange);
}

.title-border {
  border-bottom: solid 4px var(--blue);
  margin: 1em 0;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: white;
  color: black;
  padding: 10px;
  z-index: 9999;
}

.messages-info {
  background-color: rgb(72, 175, 189);
}
.messages-success {
  background-color: rgb(52, 168, 50);
}
.messages-warning {
  background-color: rgb(189, 170, 72);
}
.messages-error {
  background-color: rgb(189, 72, 72);
}
.messages-info,
.messages-success,
.messages-warning,
.messages-error {
  list-style: none;
  color: black;
  padding: 0.5em 1em;
}
