body {
    margin: 0;
    padding: 0;
}

#topo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: url('imagem02.jpg');
    background-size: cover;
    background-position: center;
    z-index: 9999;
}

#meio {
    text-align: center;
    margin-top: 200px;
    min-height: calc(100vh - 500px); /* Subtrai a altura do topo */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#meio h2 {
    font-size: 2rem;
}

#meio p {
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Estilos para tornar o site responsivo */
@media (max-width: 768px) {
    #topo {
        height: auto;
    }

    #meio {
        margin-top: auto;
    }
}

@media (max-width: 576px) {
    #topo {
        height: auto;
    }

    #meio {
        margin-top: 100px;
    }
}

/* Estilos para a exibição em computadores */
@media (min-width: 769px) {
    .meio-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }
}
    }
}
