/* styles.css (Hoja principal) */
:root {
    --primary-color: rgb(19,178,238);
    --secondary-color: rgb(254,199,6);
    --terciary-color: rgb(249,66,58);
}


/* General and Basic styles*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.box-content { box-sizing: content-box; }

.box-border { box-sizing: border-box; }

a { all: unset; }

button { all: unset; }

/* select { all: unset; } */
/* option { all: unset; } */

input { all: unset; background-color: white; }

