
<html>
<head>
<title>Indisponibilidade</title>
<style>
    body {
        font-family: Arial, sans-serif;
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
    }
    .container {
        background: linear-gradient(to bottom, #ffffff, #eaeaea);
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        text-align: center;
        max-width: 500px;
    }
    .container strong {
        font-size: 22px;
        display: block;
        margin-bottom: 20px;
    }
    .mensagem {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .logo {
        margin-top: 10px;
    }
    .logo img {
        max-width: 150px;
        height: auto;
    }
</style>
</head>
<body>
    <div class="container">
        <strong>INDISPONIBILIDADE DE SERVI&#199;O</strong>
        <p class="mensagem">Sistema indispon&#237;vel.</p>
        <div class="logo">
            <img src="https://www.tre-sp.jus.br/++theme++justica_eleitoral/imagens/logos/tre-sp.svg" alt="Logo"/>
        </div>
    </div>
</body>
</html>
