@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);
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
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;
}

.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 1em;
}
