

/* General Styles */
body {
    background-color: #1e1e1e; /* Dark gray background */
    color: #dcdcdc; /* Light gray text */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Navigation Bar */
nav {
    background-color: #2b2b2b; /* Dark gray background for the nav bar */
    padding: 20px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

nav ul li a {
    color: #dcdcdc; /* Light gray text */
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    background-color: #505050; /* Darker gray hover effect */
    border-radius: 5px;
}

/* Status Section */
.content {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    background-color: #2a2a2a; /* Medium-dark gray background */
    border-radius: 10px;
    text-align: left;
    flex-grow: 1; /* Pushes the footer to the bottom */
}

.content h1 {
    text-align: center;
    margin-top: 50px;
    font-size: 36px;
    color: #dcdcdc; /* Light gray text */
}

.content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #e0e0e0; /* Soft light gray for subheaders */
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    color: #cccccc; /* Lighter gray for paragraph text */
}

/* Footer */
footer {
    background-color: #2b2b2b; /* Dark gray background for footer */
    padding: 20px;
    text-align: center;
    color: #bbbbbb; /* Medium-light gray text */
    position: absolute; /* Make the footer stick to the bottom */
    bottom: 0;
    width: 100%; /* Ensures the footer covers the full width of the page */
}

footer p {
    margin: 0;
    font-size: 14px;
}
