/* Estilos gerais */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
}

/* Background */
.background-container {
    background-image: url('/imagens/blackLogo.jpg'); /* Caminho para a imagem inicial */
    height: 100vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-image 1s ease-in-out;
}

/* Caixa de conteúdo */
.content {
    background-color: rgba(0, 0, 0, 0.6); /* Fundo escuro semitransparente */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
}

h4 {
    font-size: 2.5rem;
    color: #007bff; /* Azul primário */
}

h5 {
    font-size: 2rem;
    color: #6c757d; /* Cinza secundário */
}

p {
    font-size: 1.2rem;
    color: #f8f9fa; /* Cor clara para o texto */
}

/* Navbar */
.navbar {
    background-color: #343a40;
}