
    body {
        font-family: Arial, sans-serif;
        margin: 40px;
        text-align: center;
        background-color: lightblue; /* O fundo da página agora é azul claro */
    }
    
    h1 {
        color: red; /* O título principal agora é vermelho */
    }

    p {
        font-size: 18px; /* O texto do parágrafo agora tem 18px de tamanho */
    }

    img {
        max-width: 80px;
        height: auto;
        border-radius: 8px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    button {
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
    }