* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    min-height: 100vh;
}

h1 {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Opcional: estilo para que la consola se vea más ordenada */
body::selection {
    background: #eee;
    color: #111;
}