/* 1. Estilos gerais para toda a página */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* 2. Estilos para o topo (Header) */
header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #0b00e0;
}

/* 3. Estilos para o cartão de conteúdo */
.cartao {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    text-align: center;
}

/* 4. Estilos para o botão */
button {
    background-color: #8e2de2;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Efeito quando o mouse passa por cima do botão */
button:hover {
    background-color: #4a00e0;
}