/* styles.css */

/* Set the background color to black */
body {
    background-color: black;
    color: white; /* Set text color to white for better visibility on a black background */
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

/* Change the color of selected text */
::selection {
    background-color: #eebebe; /* Set the background color to #eebebe (muted pink) */
    color: black; /* Set the text color to black for better visibility when selected */
}

/* Change the color of selected text for older versions of IE */
::-moz-selection {
    background-color: #eebebe; /* Set the background color to #eebebe (muted pink) */
    color: black; /* Set the text color to black for better visibility when selected */
}

/* Style the header, nav, and footer if needed */
header {
    /* Add header styles here */
}

nav {
    /* Add navigation styles here */
}

footer {
    /* Add footer styles here */
}

/* Style the h1 and h2 elements if needed */
h1, h2 {
    /* Add styles for these headings if needed */
}

/* Add more styles as necessary for your specific elements */
