/* homepage.css */

/* Basic reset for consistency across browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set up a basic font-family and background for the whole page */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Light grey background */
    color: #333; /* Dark text for readability */
    line-height: 1.6;
    padding: 20px;
}

/* Style for the header */
header {
    background-color: #333; /* Dark background for the header */
    color: #fff; /* White text color */
    padding: 10px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Basic navigation styling */
nav {
    margin: 20px 0;
    text-align: center;
}

nav a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2rem;
}

nav a:hover {
    color: #007BFF; /* Change to blue when hovered */
}

/* Main content area */
main {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

/* Style for section headings */
h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Paragraphs for readability */
p {
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Footer styling */
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Footer small text */
footer small {
    font-size: 0.8rem;
}
