.meu-logo{ 
    height: 50px;
    width: auto;
}

.pixel-text-nav {
    font-family: 'VT323', monospace;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: #ffffff;
}


body {
  background: linear-gradient(#13314f, #102a43);
  color: white;
  font-family: Arial, sans-serif;
}


/* Caixas Passado, Presente, Futuro */
.custom-card {
  border: 2px solid #d4af37;
  padding: 15px;
  background-color: transparent; 
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer; 
  display: flex; 
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.custom-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(212, 175, 55, 0.3);
  border-color: #ffffff;
}

.custom-card h3 {
  margin-top: 15px;
  color: #d4af37;
  font-family: 'VT323', monospace;
  text-decoration: none !important;
}

a.text-decoration-none {
  display: block;
  height: 100%;
}


/* Artigos */
.meu-article h2 {
    font-family: 'VT323', monospace; /* Para manter o estilo pixel */
    color: white;
    margin-bottom: 20px;
}

.meu-article p {
    text-align: justify; /* Melhora a aparência ao lado da imagem */
    line-height: 1.6;
}

/* FOOTER */
.meu-footer {
  background: #0b1c2d;
  padding: 20px;
  margin-top: 40px;
}

