@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Content styling */
.content {
    max-width: 800px; /* Limit the width for better readability */
    margin: 80px auto; /* Center the content with top margin to avoid overlap with navbar */
    padding: 20px;
    background-color: #ffffff; /* White background for content */
    color: #302b63; /* Text color */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Headings styling */
.content h1, .content h2 {
    color: #302b63; /* Darker color for headings */
}

.content p {
    line-height: 1.6; /* Increased line height for readability */
    margin: 15px 0; /* Margin for paragraphs */
}


/* Navbar styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 30px;
    background: #302b63;
    color: #ffffff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.navbar .logo a {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
	padding-right: 100px;
}

.nav-links li {
    margin: 0;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #dddddd;
}

/* Responsive styling */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Footer styling */
.footer {
    width: 100%;
    padding: 15px;
    background-color: #302b63;
    color: #ffffff;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 0.9em;
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.2);
}