/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #6C4E31;
  color: #6C4E31;
  font-family: Verdana;
  display: flex;
  justify-content: center;
  padding: 5rem;
}

.conteudo {
  background-color: #FFEAC5;
  padding: 2rem;
  color: #FFEAC5;
  border-radius: 10px;
  align-items: center;
  width: 90%;
  border: #6C4E31 dashed 10px;
  z-index: 1;

}
.cabecalho {
  background-color:#6C4E31 ;
  color: #FFEAC5;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;

  }
.bemvindo{
  display: flex;
  justify-content: center;
  }
.caixas{
  padding: 2rem;
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.caixaum{
  padding: 2rem;
  background-color: #FFEAC5;
  color: black;
  justify-content: center;
  border-radius: 10px; 
}
.caixadois{
    padding: 2rem;
  background-color: #FFEAC5;
  color: black;
  justify-content: center;
  border-radius: 10px; 
  }
    #background-sparkles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none; /* deixa os brilhos “invisíveis” para o clique */
      z-index: 0; /* fica atrás de tudo */
    }
.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(white, transparent);
  transform: rotate(45deg) scale(0.5); /* forma de losango */
  opacity: 0;
  animation: sparkleAnim 3s infinite ease-in-out;
  box-shadow: 0 0 6px white;
    }

  @keyframes sparkleAnim {
      0% {
        opacity: 0;
        transform: rotate(45deg) scale(0.5);
      }
      50% {
        opacity: 1;
        transform: rotate(45deg) scale(1.3);
      }
      100% {
        opacity: 0;
        transform: rotate(45deg) scale(0.5);
      }







