/**
    * Estos son los breakpoints que se deben usar:
    * xs: max-width: 575px
    * sm: max-width: 767px
    * md: max-width: 991px
    * lg: max-width: 1200px
    * xl: max-width: 1400px
**/



/*------------------------------------
   ?TABLE OF CONTENTS
------------------------------------*/
/**
   * ?TABLE OF CONTENTS........... Lo estás leyendo!!
   * ?FONT INSTALLATION........... Es la instalación de las fuentes del proyecto.
   * ?TOKENS........... Se definen los tokens(variables) que se van a usar en el proyecto.
   * ?GENERAL ADJUSTMENTS........... Se agregan estilos que deben tener por defecto los elementos html.
   * ?SCROLL BAR........... Se agregan estilos de scroll.
**/





/*------------------------------------
   ?FONT INSTALLATION
------------------------------------*/

@font-face {
    font-family: "SourceSans";
    src: url("../fonts/SourceSansPro-Regular.woff2") format("woff2"), url("../fonts/SourceSansPro-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "SourceSans";
    src: url("../fonts/SourceSansPro-Bold.woff2") format("woff2"), url("../fonts/SourceSansPro-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}






/*------------------------------------
   ?TOKENS
------------------------------------*/

:root {

    /*-- GRAYS --*/
    --gray-10: hsl(0,0%,10%);
    --gray-20: hsl(0,0%,20%);
    --gray-30: hsl(0,0%,30%);
    --gray-40: hsl(0,0%,40%);
    --gray-50: hsl(0,0%,50%);
    --gray-60: hsl(0,0%,60%);
    --gray-70: hsl(0,0%,70%);
    --gray-80: hsl(0,0%,80%);
    --gray-90: hsl(0,0%,90%);
    --gray-96: hsl(0,0%,96%);
    --white: #fff;



    /*-- COLORS --*/
    --primary: #3F0250;
    --secondary: #A205A4;

    --complete: #8BBC3C;
    --incomplete: #D32525;
    --locked: var(--gray-60);



    /*-- GRADIENTS --*/
    --gradient-primary: linear-gradient(160.41deg, var(--primary) 43.45%, var(--secondary) 96.82%);



    /*-- ELEVATIONS --*/
    --elevation-1: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
    --elevation-2: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px rgba(0, 0, 0, 0.3);
    --elevation-3: 0px 8px 12px 6px rgba(0, 0, 0, 0.15), 0px 4px 4px rgba(0, 0, 0, 0.3);



    /*-- BORDER RADIUS --*/
    --border-radius-s: 10px;
    --border-radius: 20px;
    --border-radius-l: 30px;
    --round: 100px;



    /*-- FONT --*/
    --size: 18px;
    --small: 0.889rem;
    --xsmall: 0.667rem;
    --font-family: "SourceSans", sans-serif;
    --text-color: var(--gray-30);



    /*-- ANIMATIONS --*/
    --transition-time: 400ms;



    /*-- BASIC FONT SIZE --*/
    font-size: var(--size);



    /*-- HEADER --*/

    --header-height: 60px;

}






/*------------------------------------
   ?GENERAL ADJUSTMENTS
------------------------------------*/

body {
    font-size: 1rem;
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--gray-96);
}

h1 {
    font-size: 1.556rem;
}

h2 {
    font-size: 1.334rem;
}

h3 {
    font-size: 1.112rem;
}

h4 {
    font-size: 1rem;
}

p {
    line-height: 1.5;
}

a {
    color: var(--secondary);
}

a:hover {
    color: var(--primary);
}

button {
    color: var(--text-color);
}

img {
    max-width: 100%;
}

li {
    padding-top: 5px;
    padding-bottom: 5px;
}






/*------------------------------------
   ?SCROLL BAR
------------------------------------*/

*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #c2c2c2;
}

*::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: transparent;
}