| <!DOCTYPE html> |
| <html lang="pt-br"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Therras Consultoria e Imóveis</title> |
| <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> |
| <style> |
| body, html { |
| height: 100%; |
| background-color: #334b0d; /* Fundo verde */ |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| margin: 0; |
| } |
| .img-fluid { |
| max-width: 100%; |
| height: auto; |
| } |
| </style> |
| </head> |
| <body> |
| <div class="container d-flex justify-content-center align-items-center" style="height: 100vh;"> |
| <div class="row d-flex align-items-center justify-content-center"> |
| <div class="col-md-10"> |
| <img src="centro.jpg" alt="Imagem Centralizada" class="img-fluid"> |
| </div> |
| </div> |
| </div> |
| </body> |
| </html> |
| |