/*
@font-face {
    font-family: 'okroma';
    src: url('../fonts/Absans-Regular.woff') format('woff');
    
} // Esta bien para los textos pero el titulo es una mierda // igual que esta: '../fonts/Ronzino-Regular.woff2'

@font-face {
    font-family: 'okroma';
    src: url('../fonts/Aileron-Regular.otf') format('opentype');
    
} // no me gustaa

@font-face {
    font-family: 'okroma';
    src: url('../fonts/CooperHewitt-Medium.ttf') format('truetype');
    
    
}// Para titulos stá bien
*/

@font-face {
    font-family: 'okroma';
    src: url('../fonts/Absans-Regular.woff') format('woff');
    
}

@font-face {
    font-family: 'okroma_titulos';
    src: url('../fonts/CooperHewitt-Medium.ttf') format('truetype');
    
    
}





* {
        box-sizing: border-box;
        accent-color: rgb(0, 221, 92);

      }

      body {
        
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;

        
        width: 100%;
        min-height: 100vh;
        background: #fff;
        margin: 0px;
        padding: 0px;
        font-family: 'okroma', Arial, Helvetica, sans-serif;
        
      }

      * {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE/Edge */
}

::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

::-webkit-scrollbar-track {
    background: transparent !important;
}

::-webkit-scrollbar-thumb {
    background: transparent !important;
    border: none !important;
}

html {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

      h1, h2 {
        font-family: 'okroma_titulos', Arial, Helvetica, sans-serif;
        
      }

      h2{
        font-style: italic;
      }