@charset "UTF-8";
/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@200;300;400;500;600;700&display=swap');
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@200;300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@400&display=swap");
.social-icons {
  margin-top: 40px;
}
.social-icons i {
  font-size: 24px;
  color: #333;
}
.social-icons a {
  text-decoration: none;
}
.social-icons a:not(:first-child) i {
  margin-left: 15px;
  /* Define a margem à esquerda para os ícones após o primeiro */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ffafbd, #ffc3a0, #ff9a9e, #fff);
  background-size: 300% 300%;
  animation: gradient 15s ease infinite;
  overflow-y: scroll;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.content {
  position: relative;
  padding: 30px;
  text-align: left;
  color: #333;
  z-index: 1;
  max-width: 100%;
}

.logo img {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

h1, h2 {
  font-size: 48px;
  margin: 30px 0 30px 0;
}

h1, h2, p, .social-icons {
  color: #333;
  padding-left: 20px;
  padding-right: 20px;
}

h1 {
  font-weight: 300;
  margin-top: 50px;
}

h2 {
  font-size: 28px;
  font-weight: 200;
}

p {
  font-weight: 400;
  font-size: 16px;
  font-family: "Noto Sans Mono", monospace;
  line-height: 1.5;
}
p a {
  color: inherit;
  color: #000;
  text-decoration: underline;
}

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