/** Importation Fonts*/
@font-face {
    font-family: 'Pixelify';
    src: url("../assets/fonts/PixelifySans-VariableFont_wght.ttf");
}
@font-face {
    font-family: 'SilkscreenRegular';
    src: url("../assets/fonts/Silkscreen-Regular.ttf");
}
@font-face {
    font-family: 'SilkscreenBold';
    src: url("../assets/fonts/Silkscreen-Bold.ttf");
}


/** Variables root */
:root{
    /* Colors */
    --white-color: #ffffff;
    --black-color: #0D0D0D;
    --darkpink-color: #F918A7;
    --darkblue-color: #01BDFD;
    --lightpink-color: #ee5bf8;
    --lightblue-color: #45C7FD;

    /* Fonts */
    --main-font: 'Pixelify', sans-serif;
    --bigtitle-font: 'SilkscreenBold', sans-serif;
    --title-font: 'SilkscreenRegular', sans-serif;

    /* Font-size de base */
    --title-size: 3rem;
    --subtitle-size: 2em;
    --text-size: 1.2em;
}


