/* Import the DM Sans font from Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@600&display=swap');*/

body {
    font-family: 'DM Sans', sans-serif; /* Sets the default font for body text */
    font-weight: 300;
}

h1, h2 {
    font-family: 'DM Sans', sans-serif; /* Sets the font for h1 */
    font-weight: 600; 
    text-transform: uppercase; /* Converts text to all caps */
}

h3 {
    font-family: 'DM Sans', sans-serif; /* Sets the font for other headings */
    text-transform: uppercase;
}


h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'DM Sans', sans-serif; /* Sets the font for other headings */
}

.btn-primary {
    color: White; /* This sets the text color to white */
    background-color: #020D23; /* This sets the background color to #020D23 */
    /* No border color is applied */
}

/* Default hyperlink color */
a {
    color: #0355f3; /* Replace with your preferred default link color */
    text-decoration: underline; /* Optional: keeps underline if desired */
}

/* Hover effect - underline color */
a:hover {
    text-decoration-color: #152D80;
    color: #152D80; /* Optional: slightly darker color on hover */
}
