@charset "UTF-8";
@font-face {
  font-family: "Lemon";
  src: url("/assets/fonts/Lemon.otf") format("opentype");
}
@font-face {
  font-family: "Kenyan";
  src: url("/assets/fonts/Kenyan.otf") format("opentype");
}
@font-face {
  font-family: "Bebas";
  src: url("/assets/fonts/BebasNeue.otf") format("opentype");
}
@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto.ttf") format("truetype");
}
@keyframes AppearMenuResponsive {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes DisappearMenuResponsive {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
@keyframes Appear {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes Disappear {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
@keyframes Turn360 {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes AppearToRight {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
header {
  padding: 4px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: linear-gradient(to right, #4158D0, #C850C0, #FFCC70);
}
header > img {
  display: block;
  width: 48px;
  height: 48px;
  filter: invert(100%);
  margin-right: 12px;
}
header a {
  display: block;
  text-decoration: none;
  color: white;
  font-family: "Kenyan";
}
header > img:first-of-type {
  display: none;
}
header > nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 24px;
}
header > nav a {
  font-size: 1.5em;
}
header > nav > div {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
header > nav > div > img {
  display: block;
  width: 36px;
  height: 36px;
  filter: invert(100%);
}
header > nav > div > div {
  width: 100%;
  position: absolute;
  padding: 12px;
  top: 100%;
  left: 0%;
  width: max-content;
  background: linear-gradient(to right, #4158D0, #C850C0, #FFCC70);
  border: 3px solid white;
  z-index: 4;
}
header > nav > div > div > a:not(:last-of-type) {
  margin-bottom: 8px;
}
header > nav > a {
  margin-left: 18px;
}
header > a:last-of-type {
  display: block;
  margin-left: auto;
}
header > a:last-of-type > img {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

@media all and (max-width: 1199px) {
  header > img:first-of-type {
    display: block;
  }
  header > nav {
    display: none;
  }
  header > a:last-of-type {
    display: none;
  }
}
footer {
  padding: 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  background: linear-gradient(to right, #4158D0, #C850C0, #FFCC70);
}
footer > strong {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
  color: white;
}
footer > div {
  margin: 0px 20px;
}
footer > div > a {
  display: block;
  text-decoration: none;
  font-family: "Bebas";
  margin-bottom: 8px;
  color: white;
}
footer > div > a:hover {
  text-decoration: underline;
}

@media all and (max-width: 767px) {
  footer > div {
    width: 100%;
    text-align: center;
  }
}
* {
  padding: 0px;
  margin: 0px;
}

body > div#container-menu-responsive {
  position: fixed;
  transform-origin: left;
  top: 0%;
  left: 0%;
  background-color: rgba(65, 88, 208, 0.7);
  backdrop-filter: blur(8px);
  width: 75%;
  height: 100vh;
  padding: 12px;
  z-index: 5;
  display: none;
  flex-direction: column;
}
body > div#container-menu-responsive > img {
  display: block;
  width: 32px;
  height: 32px;
  filter: invert(100%);
  margin-left: auto;
}
body > div#container-menu-responsive > nav > div > img {
  display: none;
}
body > div#container-menu-responsive > nav a {
  display: block;
  color: white;
  font-family: "Bebas";
  margin-bottom: 8px;
  font-size: 1.4em;
  text-decoration: none;
}

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 {
  padding: 12px;
}

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

h2 {
  font-size: 2em;
  font-family: "Kenyan";
}

h3 {
  font-size: 1.7em;
  font-family: "Kenyan";
}

strong {
  font-weight: normal;
}

address {
  font-style: normal;
}

pre {
  white-space: pre-wrap;
}

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

main > section {
  width: 50%;
  margin: 12px auto;
}
main > section > h2 {
  background: linear-gradient(to right, #4158D0, #C850C0, #FFCC70);
  padding: 8px;
  color: white;
  border-radius: 8px;
  width: max-content;
  max-width: fit-content;
  margin: 0px auto;
}
main > section > h3 {
  text-align: center;
  margin-bottom: 12px;
}
main > section > div:first-of-type {
  width: 200px;
  max-width: 100%;
  height: 14px;
  background: linear-gradient(to right, #4158D0, #C850C0, #FFCC70);
  border-radius: 24px;
  margin: 12px auto;
}
main > section > p {
  line-height: 1.3em;
  margin-bottom: 12px;
}
main > section > p > span.txt-warning {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px;
  border: 2px solid #B71C1C;
  background-color: #D32F2F;
  border-radius: 8px;
  color: white;
}
main > section > p > span.txt-warning > img {
  display: block;
  width: 32px;
  height: 32px;
  filter: invert(100%);
  margin-right: 12px;
}
main > section > ul {
  margin: 0px auto 12px auto;
  text-align: center;
}
main > section > ul > li {
  list-style: none;
  margin-bottom: 8px;
}
main > section > ul > li > a {
  color: #4158D0;
  text-decoration: none;
}
main > section > ul > li::before {
  content: "►";
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
main > section > img {
  display: block;
  width: 100%;
  border-radius: 12px;
}
@media all and (min-width: 768px) and (max-width: 1199px) {
  main > section {
    width: 80%;
  }
}
@media all and (max-width: 767px) {
  main > section {
    width: 100%;
  }
}
main > section > div:last-of-type {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  gap: 12px;
}
main > section > div:last-of-type > article {
  padding: 12px;
}
main > section > div:last-of-type > article > *:not(:last-child) {
  margin-bottom: 12px;
}
main > section > div:last-of-type > article > h3 {
  text-align: center;
}
main > section > div:last-of-type > article > img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
main > section > div:last-of-type > article > button {
  display: block;
  width: max-content;
  max-width: 100%;
  padding: 6px 18px;
  border-radius: 24px;
  background: linear-gradient(to right, #4158D0, #C850C0, #FFCC70);
  color: white;
  border: none;
  transition-property: box-shadow;
  transition-duration: 200ms;
  margin: 0px auto;
}
main > section > div:last-of-type > article > button:hover {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
}

@media all and (max-width: 767px) {
  main > section > div:last-of-type {
    grid-template-columns: repeat(1, 100%);
    gap: 0px;
  }
  main > section > div:last-of-type > article {
    padding: 0px;
    margin-bottom: 24px;
  }
}

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