/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

/* Apply Raleway font to body */
body {
    font-family: 'Raleway', sans-serif;
}

/* Apply Raleway font to headings with bold weight */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

/* Apply regular weight for paragraphs */
p {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}