@charset "UTF-8";
@font-face {
  font-family: "Lemon";
  src: url("../fonts/Lemon.otf") format("opentype");
}
@font-face {
  font-family: "Cushion";
  src: url("../fonts/Cushion.ttf") format("truetype");
}
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/Quicksand.otf") format("opentype");
}
@keyframes Turn90 {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(90deg);
  }
}
@keyframes UnTurn90 {
  from {
    transform: rotateZ(90deg);
  }
  to {
    transform: rotateZ(0deg);
  }
}
@keyframes Appear {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes Disappear {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
@keyframes AppearToRight {
  from {
    transform: translateX(-1000px);
  }
  to {
    transform: translateX(0px);
  }
}
@keyframes AppearToBottom {
  from {
    transform: translateY(-1000px);
  }
  to {
    transform: translateY(0px);
  }
}
@keyframes Turn360 {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: linear-gradient(to right, #4158D0, #C850C0, #FFCC70);
  padding: 0px 24px;
}
header a {
  display: block;
  text-decoration: none;
  color: white;
  animation: 600ms ease-in-out AppearToRight;
}
header h1 {
  color: white;
  margin-right: 18px;
}
header > img {
  display: none;
  width: 52px;
  height: 52px;
  filter: invert(100%);
}
header > nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  animation: 600ms ease-in-out AppearToBottom;
}
header > nav > * {
  margin: 0px 14px;
  height: 100%;
  border-bottom: 6px solid transparent;
}
header > nav > *:hover {
  border-bottom: 6px solid white;
}
header > nav a {
  font-size: 1.4em;
  display: flex;
  align-items: center;
}
header > nav > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
header > nav > div > img {
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 6px;
  filter: invert(100%);
}
header > nav > div > div {
  position: absolute;
  border: 4px solid white;
  z-index: 2;
  top: 100%;
  left: 0%;
  background: linear-gradient(to right, #4158D0, #C850C0, #FFCC70);
  padding: 4px 12px;
}
header > nav > div > div > a {
  margin: 8px 0px;
  width: max-content;
}

@media all and (max-width: 1199px) {
  header {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  header > img {
    display: block;
  }
  header > nav {
    display: none;
    width: 100%;
    flex-direction: column;
  }
  header > nav > div > img {
    display: none;
  }
  header > nav > * {
    height: auto;
    margin: 4px 0px 12px 0px;
    border: none;
  }
  header > nav > *:hover {
    border: none;
  }
}
footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  padding: 30px;
  background: linear-gradient(to right, #4158D0, #C850C0, #FFCC70);
}
footer > em {
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
}
footer > div {
  width: 30%;
  margin: 24px 24px 0px 24px;
}
footer > div > p {
  font-family: "Cushion";
  margin-bottom: 24px;
  text-align: center;
  color: white;
  font-size: 1.6em;
}
footer > div > ul > li {
  list-style: none;
}
footer > div > ul > li > a {
  display: block;
  text-align: center;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
}
footer > div > ul > li:last-of-type > a {
  margin-bottom: initial;
}

@media all and (min-width: 768px) and (max-width: 1199px) {
  footer > div {
    width: 40%;
  }
}
@media all and (max-width: 767px) {
  footer > div {
    width: 100%;
  }
}
* {
  margin: 0px;
  padding: 0px;
}

h1 {
  font-family: "Lemon";
  font-size: 2.8em;
}

h2 {
  font-size: 2em;
}

h2, h3 {
  font-family: "Cushion";
}

strong {
  font-weight: normal;
}

em {
  font-style: normal;
}

p, a, li, em, label, strong, input, textarea, th, td, pre, button {
  font-family: "Quicksand";
  font-size: 1.1em;
}

p, li, pre {
  line-height: 1.3em;
}

div.infoMessage {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  position: fixed;
  top: 0%;
  z-index: 2;
  box-sizing: border-box;
}
div.infoMessage > p {
  width: max-content;
  margin: 0px auto;
  color: white;
  margin: 14px;
  padding: 8px 14px;
  border-radius: 24px;
}

main > section {
  padding: 24px 25%;
  /*
  li, p, pre{

      line-height: 1.3em;
  }
  */
}
main > section > h2 {
  width: max-content;
  max-width: fit-content;
  border-radius: 12px;
  background: linear-gradient(to right, #4158D0, #C850C0, #FFCC70);
  padding: 10px 16px;
  color: white;
  margin: 0px auto;
}
main > section > h2, main > section h3 {
  text-align: center;
}
main > section > h3 {
  margin: 8px 0px;
}
main > section > div:first-of-type {
  min-width: 10%;
  max-width: 20%;
  height: 12px;
  border-radius: 16px;
  background: linear-gradient(to right, #4158D0, #C850C0, #FFCC70);
  margin: 12px auto;
}
main > section > p > a {
  color: #4158D0;
  text-decoration: none;
}
main > section > p > a:hover {
  text-decoration: underline;
}
main > section > p > span.text_warning {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 10px;
  border: 2px solid #B71C1C;
  background-color: rgba(183, 28, 28, 0.75);
  color: white;
  margin: 6px 0px;
  padding: 8px;
}
main > section > p > span.text_warning > img {
  display: block;
  width: 32px;
  height: 32px;
  filter: invert(100%);
  margin-right: 8px;
}
main > section > pre {
  white-space: pre-wrap;
}
main > section > img {
  display: block;
  width: 70%;
  margin: auto;
}
main > section > ul {
  margin-top: 12px;
}
main > section > ul > li {
  list-style: none;
  text-align: center;
}
main > section > ul > li > a {
  color: #4158D0;
  text-decoration: none;
}
main > section > ul > li > a:hover {
  text-decoration: underline;
}
main > section > ul > li::before {
  content: "➔";
  margin-right: 6px;
}
main > section > ul > li:not(li:last-of-type) {
  margin-bottom: 6px;
}
@media all and (min-width: 768px) and (max-width: 1199px) {
  main > section {
    padding: 24px 10%;
  }
  main > section > img {
    width: 85%;
  }
}
@media all and (max-width: 767px) {
  main > section {
    padding: 24px 16px;
  }
  main > section > img {
    width: 100%;
  }
}
main > section > table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0px;
}
main > section > table th, main > section > table td {
  padding: 10px;
}
main > section > table > thead {
  background: linear-gradient(to right, #4158D0, #C850C0, #FFCC70);
}
main > section > table > thead th {
  color: white;
}
main > section > table > tbody > tr:nth-of-type(even) {
  background-color: #e3e3e3;
}
main > section:first-of-type > p:first-of-type {
  border: 2px solid black;
  padding: 8px;
}
main > section:last-of-type > p:not(:last-of-type) {
  margin-bottom: 16px;
}

/*# sourceMappingURL=informationsStyle.css.map */
