:root {
--color-blue: blue;
--primario-color: black ;
--secundario-color: white;
--background-primario: white;
--background-boton: red;
--tamaño-font-secundario: ;
--margin-bottom: 1.6rem;
--padding-button: 1rem, 2rem;
--border-radius: 8px;
--text-center: center;
--cursor-mano: pointer;
}

@media screen and (min-width: 768px) {
 :root {
    --background-primario: rgb(45, 45, 45);
    --primario-color: white;
    --secundario-color: white;
 }
}

* {
    box-sizing: border-box;
}

header{
    text-align: var(--text-center);
    color: var(--color-blue);
    background: var(--background-primario);
}

main{
    text-align: var(--text-center);
}

.card {
    background: var(--background-primario);
    color: var(--primario-color);
}

.card_titulo{
 color: var(--secundario-color);
}

.card_texto{
 color: var(--secundario-color);
}


/*
.centrado {
    text-align: center;
    }
    .grande {
    font-size: 2rem;
    }
    .boton-rojo {
    background: red;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    }
    .titulo {
    font-weight: bold;
    }
    .texto {
    margin-bottom: 1.6rem;
    }
    */