/* styles.css */

/* Set the background color to green */
body {
	text-align: center;
    ###background-color: steelblue;
}

/* Style the navigation menu */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center; /* Center the text within the <ul> element */
}

nav li {
    display: inline; /* Display <li> elements inline */
    margin-right: 20px; /* Adjust the spacing between list items */
}

/* Style the header */
header {
    text-align: center;
    padding: 20px;
    background-color: white; /* You can change the background color as needed */
}

header h1 {
    font-size: 36px; /* Adjust the font size as needed */
    color: #333; /* Adjust the text color as needed */
}

/* Style the main content section */
main {
    padding: 20px;
}

/* Style the call-to-action button */
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007acc; /* You can change the button color as needed */
    color: white; /* Adjust the text color as needed */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #005b9f; /* Change the button color on hover as needed */
}

/* Style the footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: white; /* You can change the background color as needed */
    color: #333; /* Adjust the text color as needed */
}
