/* FUENTES */

@font-face {
    font-family: 'Textos';
    src: url('../fonts/text/LeagueSpartan-VF.woff2')format('woff2'),
    url('../fonts/text/LeagueSpartan-VF.woff')format('woff');
    font-weight: 200 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Titulos3';
    src: url('../fonts/title/BebasNeue-Regular.woff2')format('woff2'),
    url('../fonts/title/BebasNeue-Regular.woff') format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/*COLORES*/
:root {
    --color-principal: rgb(16, 204, 249);
    --color-texto: rgb(255, 255, 255);
    --color-fondo:rgb(7, 7, 7);
    --padding-general: 1rem;
    --color-trasparenciaVideo: rgba(0,0,0,0.5); 
    --color-botones: rgb(35, 35, 35);
} 


/* GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

/* BODY */

body {
    height: 100%;              
    margin: 0;                 
    display: flex;
    flex-direction: column;   
    min-height: 100dvh;
    background-color: var(--color-fondo);
    font-family: 'Textos', sans-serif;
    overflow-x: hidden;
}

/* TEXTOS GENERAL */
h1{
    font-weight: normal;
    font-size: 40px; 
    letter-spacing: 0.1rem;
    font-family: 'Titulos3', sans-serif;
    padding: 1.875rem 0 0.625rem 0;

}

p{
    font-size: 20px;
}