:root {
    --negro         : #000000;
    --blanco        : #ffffff;
    --gris          : #898989;
    --grisClaro     : #f0f0f0;
    --azul1         : #4CC0E0;
    --azul3         : #4cc0e088;
    --verde         : #048048;
    --azulFuerte    : #0B509E;
    --azul2         : #29A2D1;
    --verdeBrilloso : #ABCA27;
    --verdeClaro    : #5FBC2E;
    --grisOscuro1: #1b1b1b;
    --grisOscuro2: #202020;
    --grisOscuro3: #242424;
    --grisOscuro4: #3d3d3d;
}

/*@font-face {
    font-family: 'Mont';
    src: url('/fonts/MontHeavyDEMO.otf') format('opentype'),
         url('/fonts/MontExtraLightDEMO.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}*/

@font-face {
    font-family: 'Roboto Bold';
    src: url('/fonts/RobotoSemiCondensedBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins Regular';
    src: url('/fonts/PoppinsRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins Regular', 'Segoe UI', sans-serif;
    letter-spacing: 0.3px;
}

h2 {
    font-size: 2.8rem;
    font-family: 'Roboto Bold';
    color: var(--azul2);
    z-index: 1;
    text-align: center;
}

h3 {
    color: var(--azul2);
    font-family: 'Roboto Bold';
    letter-spacing: 0.5px;
}

strong {
    color: var(--azulFuerte);
    font-weight: 600;
}

::-webkit-scrollbar {
    width: 0.8rem;
}

::-webkit-scrollbar-track {
    background: var(--azul3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--azul1), var(--verdeBrilloso));
    border-radius: 1rem;
}

@media screen and (max-width: 550px) {
    h2 {
        font-size: 1.5rem;
    }
}

body {
    overflow-x: hidden;
}
