* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #000000, #161616, #0044ff);
  background-size: 400% 400%;
  animation: gradientAnim 12s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  text-align: center;
}

.container {
  margin: auto;
}

.imagem {
  max-width: 50%;
}

.legenda {
  color: #fff;
  margin-top: 0px;
  font-size: 16px;
}

.redes-titulo {
  color: #fff;
  margin-top: 0px;
  font-size: 16px;
font-family: Arial, Helvetica, sans-serif, bold;}

.redes-sociais {
  margin-top: 10px;
}

.redes-sociais a {
  color: #fff;
  font-size: 24px;
  margin: 0 10px;
  transition: color 0.3s;
}

.redes-sociais a:hover {
  color: #fffb00ee; /* azul claro ao passar o mouse */
}

@keyframes gradientAnim {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


@media screen and (max-width: 768px) {
    
body{
    height: 100vh;
}

.imagem {
  max-width: 80%;

  
}

}









 

