body{
                                        font-family:Exo 2;
                                                                                                            }

    @import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

/* Apply Exo 2 to the main body text (paragraphs, etc.) */
body {
    font-family: 'Sora', sans-serif;
    line-height: 1.6; /* Adjust line-height for readability */
    font-size: 12px; /* Example: set a base font size */
}

/* Apply Ubuntu to all header tags */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700; /* Example: Use bold for headers, if you imported it */
    margin-top: 1em; /* Adjust spacing as needed */
    margin-bottom: 0.5em; /* Adjust spacing as needed */
}

/* You can also target paragraphs explicitly if needed, though 'body' usually covers it */
p {
    font-family: 'Sora', sans-serif; /* Explicitly ensure paragraphs use Exo 2 */
    margin-bottom: 1em; /* Adjust spacing as needed */
}

/* Add any other specific styling you need */

::selection {
    background: #002c33;  
    color: #ffffff;        
}

/* For Firefox */
::-moz-selection {
    background: #002c33;
    color: #ffffff;
}
    
