/* General reset & font */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #001f3f; /* Navy blue */
    color: white;
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
}

/* Navbar styling */
.navbar {
    background-color: #001f3f;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
    position: sticky;
    top: 0;
}

.navbar:hover {
    background-color: #003366; /* Slightly lighter navy */
}

.navbar .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar .brand:hover {
    color: #87CEFA; /* Light sky blue on hover */
}

/* Main content styling */
.content {
    flex: 1; /* Take up remaining space below navbar */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical center */
    align-items: center; /* Horizontal center */
    text-align: center;
    padding: 2rem;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.2rem;
    max-width: 600px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .content h1 {
        font-size: 2rem;
    }
    .content p {
        font-size: 1rem;
    }
}
