html,
body {
    height: 100%;
    margin: 0;
    background: #f4f6f9;
    font-family: Arial, Helvetica, sans-serif;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
}

.comunicado {
    max-width: 900px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    text-align: center;
}

.logo {
    max-width: 240px;
    margin-bottom: 35px;
}

h1 {
    color: #003b70;
    font-weight: 700;
    margin-bottom: 30px;
}

p {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

@media (max-width: 768px) {

    .comunicado {
        padding: 35px 25px;
    }

    .logo {
        max-width: 180px;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

}