/* *****************FONT - PPRADER******************* */
@font-face {
    font-family: 'PPRader';
    src: url('/fonts/PPRader-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'PPRader';
    src: url('/fonts/PPRader-ThinItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}
@font-face {
    font-family: 'PPRader';
    src: url('/fonts/PPRader-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'PPRader';
    src: url('/fonts/PPRader-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'PPRader';
    src: url('/fonts/PPRader-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'PPRader';
    src: url('/fonts/PPRader-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

/* ======= PPRADER CLASSES ======= */
.ppraderThin {
    font-family: 'PPRader';
    font-weight: 100;
    font-style: normal;
}
.ppraderThinItalic {
    font-family: 'PPRader';
    font-weight: 100;
    font-style: italic;
}
.ppraderRegular {
    font-family: 'PPRader';
    font-weight: 400;
    font-style: normal;
}
.ppraderItalic {
    font-family: 'PPRader';
    font-weight: 400;
    font-style: italic;
}
.ppraderBold {
    font-family: 'PPRader';
    font-weight: 700;
    font-style: normal;
}
.ppraderBoldItalic {
    font-family: 'PPRader';
    font-weight: 700;
    font-style: italic;
}
/* *****************FONT - PPRADER******************* */

/* Text colors */
.textDark{
    color: #001B32 ;
    
}
.textPurple{
    color: #4a0ac2de;
}
/* Navbar */
.textDarkBlue{
    color: #00162A ;
    text-decoration: none;
}

.purpleBtn {
    color: #fff;
    background-color: #4a0ac2de;
    text-decoration: none;
    border: 1px solid #00162A;
    border-radius: 9999px; /* para que sea como Tailwind's rounded-full */
    display: inline-block;
    padding: 0.5rem 1.5rem; 
    font-size: 0.875rem; 
}

.purBtn {
    color: white;
    background-color: #4a0ac2de;
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 1.5rem; 
    font-size: 0.875rem;
}
