/* 
Theme Name:   Twenty Twenty-Five Child Theme
Theme URI:    https://example.com/twentytwentyfive-child 
Description:  A child theme for the Twenty Twenty-Three theme. 
Author:       Ryan
Author URI:   https://rwassom.slccwebdev.com
Template:     twentytwentyfive
Version:      1.0 

*/

/* Add your custom CSS below this line */
/* 1. Change the background color of the entire site */
body {
    background-color: #f0f8ff; /* Light blue background */
}

/* 2. Change the color of all headings (h1 to h6) */
h1, h2, h3, h4, h5, h6 {
    color: #ff4500; /* Orange text for headings */
}

/* 3. Increase the size of links and add underline on hover */
a {
    font-size: 1.2rem; /* Increase link font size */
    text-decoration: none; /* Remove underline by default */
}
a:hover {
    text-decoration: underline; /* Add underline on hover */
}