/* ==================================================
   VARIABLES GLOBALES
================================================== */
:root {
    --mm-pink: #f10ea5;
}

/* ==================================================
   RESET / BASE
================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #fafafa;
    color: #000000;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

/* ==================================================
   UTILITAIRES
================================================== */
.pink {
    color: var(--mm-pink);
}