@charset "UTF-8";
/* CSS Document */

/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
}

/* Wrapper Box */
#wrapper {
    max-width: 1200px;    /* Limit the width of the content */
    margin: 0 auto;       /* Center the wrapper horizontally */
    padding: 20px;        /* Add padding inside the box */
    background: #166083;     /* White background for contrast */
    border: 1px solid #ccc; /* Optional: Add a border around the wrapper */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow for depth */
    text-align: center;   /* Center-align all text within the wrapper */
}

/* Header */
header {
    
text-align: center;
    padding: 20px 0;
    background: #333;
    color: #fff;
}

/* Navigation */
/* Navigation Bar */
nav {
    background-color: #333; /* Dark background */
    padding: 10px 20px;    /* Adds padding around the navigation */
    position: sticky;      /* Keeps it at the top on scroll */
    top: 0;                /* Sticks to the top of the page */
    z-index: 1000; 		/* Ensures it stays above other elements */
	align-content: center;
	background-color: #45b1e0;
}

nav ul {
    display: flex;         /* Display items in a row */
    justify-content: center; /* Center the navigation items */
    list-style: none;      /* Remove bullet points */
}

nav ul li {
    margin: 0 15px;        /* Space between items */
}

nav ul li a {
    color: white;          /* Text color */
    text-decoration: none; /* Remove underline */
    font-size: 16px;       /* Adjust font size */
    padding: 5px 10px;     /* Add padding around links */
    border-radius: 3px;    /* Rounded corners for hover effect */
    transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
}

nav ul li a:hover {
    background-color: #575757; /* Slightly lighter on hover */
    color: #fff;              /* Keep text white */
}


/* Main */
main {
    padding: 20px;
}
section {
    margin-bottom: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px 0;
    background: #333;
    color: #fff;
    margin-top: 20px;
}

/* Link States */
a {
    color: #0066cc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
    color: #004080;
}

h1 {
	font-size: 50px;
	font-weight: bold;	
}



/* h2 Styles */
h2 {
    font-weight: bold; /* Make h2 text bold */
    font-size: 2rem;   /* Adjust the font size for prominence */
    margin-bottom: 20px; /* Add space below the heading */
	color: aliceblue;
}

p {
color: aliceblue
}

