/*suavisa las animaciones de scroll al hacer click en un link*/
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*fuente general*/
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 400;
}
body{
    background-color: #1f1f1f;
    color: white;
}


.underline {
    text-decoration: underline;
}


/* fuente artística */
.ballet {
  font-family: "Ballet", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
/* fuente general */
.rubik {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
/*tipografía*/

.title {
    font-family: "Rubik", sans-serif;
    font-size: 48px;
    font-weight: 700;
}

.subtitle {
    font-family: "Rubik", sans-serif;
    font-size: 24px;
    font-weight: 500;
}

.subtitle2 {
    font-family: "Rubik", sans-serif;
    font-size: 22px;
    font-weight: 600;
}

.body {
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    
}

.body-sm {
    font-family: "Rubik", sans-serif;
    font-size: 12px;
    font-weight: 400;
}

/*fuente en media mobile */
@media (max-width:767px) {
    .title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .subtitle2 {
        font-size: 14px;
    }

    .body {
        font-size: 12px;
    }

    .body-sm {
        font-size: 10px;
    }
}

/*weights*/
.regular {
    font-weight: 400;
}

.medium {
    font-weight: 500;
}

.semi-bold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.extra-bold {
    font-weight: 800;
}


/*styles*/
.italic {
    font-style: italic;
}

/*colores de fuente*/
.principal {
    color: #000;
}

.white {
    color: #ffff;
}

/* alineacion */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}









