body {
    background-color: #000000;
    color: #ffffff;
}

h1 {
    color: #ffffff;
    text-align: center;
}

h2 {
    color: #e6e6e6;
    text-align: center;
}

h3 {
    color: #cccccc;
    text-align: center;
}

p {
    color: #858585;
    text-align: center;
}
a:link {
  color: #0066cc;
  text-decoration: none; /* Remove o sublinhado */
  font-weight: bold;
  text-align: center;
}

img, h4 {
  display: inline-block;
  vertical-align: middle; /* Alinha no meio */
  border-radius: 50%;
}


/* Link já visitado */
a:visited {
  color: #660066;
  text-align: center;
}

/* Ao passar o mouse (hover) */
a:hover {
  color: #28c2ff;
  text-decoration: underline; /* Adiciona sublinhado no hover */
  text-align: center;
}

/* Link ativo (no momento do clique) */
a:active {
  color: rgb(6, 207, 96);
  text-align: center;
}

.center-container {
    height: 105px; /* Ajuste conforme necessário */
}

input {
    background-color: #333333;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    width: 100%;
    height: 30px; /* Optional: Set a height to see vertical centering in action */
}

