/* styles.css */

/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #c1d1c5;
    color: #333;
}

/* Header styles */
header {
    background-image: url('banner.jpg');
    height: 200px;
    background-repeat: no-repeat; 
    background-size: cover;
}

/* Navigation styles */
nav {
    background-color: #333; /* Navigation bar color */
    height: 40px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

nav ul {
    list-style: none;
    padding: 0;
    height: fit-content;
    width: fit-content;
}
nav ul li {
    display: inline;
    margin-right: 40px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #555; /* Darker background color on hover */
}

/* Main styles */
main {
    display: flex;
    max-width: 960px;
    margin: 20px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    color: #007bff;
    margin-bottom: 10px;
}

/* Footer styles */
footer {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
