/* 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-image: url('corte.jpg'); 
   background-size: cover;
   background-repeat:repeat;
  color: black;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;

}
a{color: #FF38BD;}
  a:hover{ color:blue}


.menu ul {
  list-style: none; /* Remove os marcadores de lista */
  padding: 0; /* Remove o preenchimento padrão */
  margin: 0;
   display: flex;
  justify-content: center;
  align-items: center;
}


.menu li {
  display: inline; /* Faz os itens ficarem na mesma linha */
  
}

.menu a {
  display: inline-block; /* Permite aplicar padding e outros estilos */
  padding: 10px 20px; /* Adiciona espaço ao redor dos links */
  text-decoration: none; /* Remove o sublinhado dos links */
  color:black; /* Define a cor do texto */
}

.menu a:hover {
  color:#FF38BD; /* Efeito ao passar o mouse */
}

  
.titulo{
  text-align: center;
 }
  
.tituloimg {
   max-width: 60%;
  height: auto;
}
  
.capa{
   max-width: 30%;
  height: auto;
  }
  
  .capa {
  display= flex;
  justify-content= center;}

.neocitieslogo {
  position:fixed;
  bottom:0}