* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #f5f5f5;

    /* IMAGEN DE FONDO */
    background-image: url("img/leon.png");
    background-size: cover;
    /* que cubra toda la pantalla */
    background-position: center;
    /* centrada */
    background-repeat: no-repeat;
    /* sin repetir */
}

/* capa oscura arriba de la imagen para que el texto se lea bien */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.card {
    max-width: 900px;
    width: 90%;
    padding: 32px;
    border-radius: 20px;
    text-align: center;

    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.card h1 {
    font-size: clamp(22px, 3vw, 36px);
    margin-bottom: 12px;
}

.icons {
    font-size: 32px;
}