body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://blob.saurus.net.br/drive/clientes/cliente_bonfim/planodefundo_inicial.png') center/cover no-repeat;
    opacity: 0; /* Inicialmente transparente */
    z-index: -1;
    animation: fadeIn 5s ease-in-out forwards; /* Animação para esmaecimento */
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.content {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    text-align: center;
}

h1 {
    font-size: 70px;
    color: black;


}

.footer {
    background-color: hsla(194, 74%, 67%, 0);
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.footer-left img {
    width: 100px; /* Ajuste o tamanho do logo conforme necessário */
}

.footer-right a {
    color: rgb(6, 5, 90);
    font-size: 50px;
    margin-left: 10px;
    text-decoration: none;
    margin-right: 30px;
}

.footer-right a:hover {
    color: #00a2ff; /* Cor ao passar o mouse sobre os ícones */
}