@import url('https://fonts.googleapis.com/css2?family=Freckle+Face&family=Poppins:wght@400;700&display=swap');

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  outline: 0;
}
body {
  background: linear-gradient(-45deg, #1f1f27, #1f1f27, #103772, #315789);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: 500% 500%;
  animation: transicao 7s ease-in-out infinite;
  position: relative;
  scroll-behavior: smooth;
}
:target{
  scroll-margin-top: .5em;
}
@keyframes transicao {
  0% {
      background-position:  0% 80%;
  }
  50% {
      background-position: 80% 100%;
  }
  100% {
      background-position: 0% 90%;
  }
}

main {
  margin-top: 0em;
  min-height: 80vh;
  padding-bottom: 1em;
}
.logo {
  color: #ace3ff !important;
  font-family: 'Freckle Face' !important;
  font-size: 1.5em;
}
a, button {
  text-decoration: none !important;
  outline: none !important;
}
a:hover, button:hover {
  text-decoration: none !important;
  outline: none !important;
}
.nav-link {
  font-size: 1em;
}

footer {
  background: linear-gradient(-45deg, #1f1f27, #1f1f27, #103772, #315789);
  min-height: 15vh;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100px;
  bottom: 0;
  left: 0;
}
footer{
  border-top: 1px solid #555;
}
header{
  border-bottom: 1px solid #555;
}

h5, h3 {
  font-weight: 700;
  color: #fbff15b0;
}