html, body {
  /* color: #ffffff; */
  /* background-color: #04070c; */
  color: #000000;
  background-color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0px;
  margin: 0px;
  width: 100%;
  height: 100%;
}
div.background {
  position: relative;
  width: 100%;
  height: 100%;
}
div.background:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-image: url("background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
div.foreground {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
div.header {
  display: flex;
  flex-direction: row;
  min-width: min-content;
}
div.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: min-content;
}
div.toolbar {
  text-align: right;
  flex: 1;
}
div.content {
  display: flex;
  flex: 1;
  margin-top: 20px;
  min-width: min-content;
  overflow: auto;
  margin-left: auto;
  margin-right: auto;
}
div.login {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 20px;
  min-width: min-content;
  overflow: auto;
  margin-left: auto;
  margin-right: auto;
}
div.text {
  flex: 1;
  max-width: 640px;
}
div.flag {
  text-align: center;
}
div.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: min-content;
  min-height: min-content;
}
img.logo, img.flag, img.reference {
  width: auto;
  height: auto;
}
a {
  /* color: #ffffff; */
  color: #000000;
  text-decoration: none;
}
a.reference {
  font-size: 0.9em;
  /* border: 1px solid #ffffff; */
  border: 1px solid #000000;
  padding: 3px;
}
h1 {
  text-align: center;
  background: linear-gradient(to right, rgba(0,77,0,0.8), rgba(0,77,0,0.2), rgba(0,77,0,0.8));
}
p {
  /* color: #a8a8a8; */
  color: #2c2c2c;
  background-color: rgba(200,200,200,0.5);
  text-align: justify;
}
p.message {
  /* color: #ffffff; */
  color: #000000;
  font-weight: bold;
}
p.center {
  /* color: #ffffff; */
  color: #000000;
  font-weight: bold;
  text-align: center;
  padding-top: 20px;
}
ul.awesome {
  list-style: none;
}
ul.awesome li {
  padding-top: 10px;
  text-indent: -1em;
}
ul.awesome li.phone::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  padding-right: 0.5em;
}
ul.awesome li.envelope::before {
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  padding-right: 0.5em;
}

/* Settings for small screens */
div.text {
  padding: 0 0 20px 0;
}
span.title {
  font-size: 0.6em;
  font-weight: bold;
}
img.logo {
  max-height: 40px;
}
img.flag {
  max-height: 15px;
}
img.reference {
  max-height: 40px;
}
div.content {
  flex-direction: column;
}
h1 {
  font-size: 1.2em;
}
p {
  font-size: 0.9em;
}
ul.awesome li {
  font-size: 1.2em;
}

/* Settings for wide screens */
@media screen and (min-width: 768px) {
  div.content {
    flex-direction: row;
  }
  div.text {
    padding: 0 20px 20px 0;
  }
  span.title {
    font-size: 0.9em;
  }
  img.logo {
    max-height: 80px;
  }
  img.flag {
    max-height: 30px;
  }
  img.reference {
    max-height: 60px;
  }
  h1 {
    font-size: 1.5em;
  }
  p {
    font-size: 1em;
  }
  ul.awesome li {
    font-size: 1.5em;
  }
}
