:root {
    --um:#1a186e;
    --dois:rgb(255, 0, 0);
    --tres:rgb(255, 255, 255);
}

.navbar-toggler {
	background-color: white !important; }

/* Em Andamento */
.Andamento tr {
	display: inline-block;
}
.Andamento a {
	text-decoration: none;
}

/* Barra de navegação */
.navbar-collapse li a:hover { border-style: outset; border-color: white;}

@keyframes fa-blink {
	0% { opacity: 1; }
	50% { opacity: 0.5; }
	100% { opacity: 0; }
}

/*Classe pisca título*/
.atencao {
  -webkit-animation: fa-blink .75s linear infinite;
  -moz-animation: fa-blink .75s linear infinite;
  -ms-animation: fa-blink .75s linear infinite;
  -o-animation: fa-blink .75s linear infinite;
  animation: fa-blink .75s linear infinite;
}

.titulo_Andamento {
	text-align: center;
}

h1 {
	color: var(--um);
	font-family: 'Pattaya', sans-serif;
}
h2,h3 {
	color: var(--dois);
	font-family: 'Arial black', Times , sans-serif;
}
	.card {
		  width: 300px;
		  text-align: center;
		  display: flex;
		  flex-direction: column;
		  align-items: center;
		  border: 1px solid #ddd;
		  margin: 10px;
		  min-height: 200px; /* Altura mínima para todos os cards */
	  }

	  .card img {
		  width: 100%;
		  height: 100px; /* Altura fixa para as imagens (ajuste conforme necessário) */
		  object-fit: contain; /* Corta a imagem para preencher o espaço disponível */
	  }

	  .card a {
		  text-decoration: none;
	  }

	  .card-text {
		  font-size: 18px;
		  color: blue;
	  }