body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.convite {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
    overflow: hidden;
}

.imagem-fundo {
    /* Você pode adicionar um estilo para a imagem de fundo aqui */
    /* Exemplo: */
    /* background-image: url('sua-imagem.jpg'); */
    /* background-size: cover; */
    /* height: 200px; */
}

.conteudo {
    padding: 30px;
    text-align: center;
}

h1 {
    color: #e91e63; /* Cor rosa, você pode alterar */
    margin-bottom: 10px;
}

h2 {
    color: #333;
    margin-bottom: 20px;
}

p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

a {
    color: #007bff; /* Cor azul para o link */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}