

body {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('./Background-2.png');
    background-size: cover;
    background-repeat: no-repeat;
}

/* Navbar styles */
.navbar {
    /* background-color: rgba(0, 0, 0, 0.8); */
    display: flex;
    background-color: transparent; /* Set the background color to transparent */
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: none; /* Remove shadows */
    z-index: 999; /* Make sure it's on top of other elements */
    transition: background-color 0.5s ease;
}

/* Navbar links styles */
.navbar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.navbar-links li {
    margin-right: 20px;
}

.navbar-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.navbar-left img,
.navbar-right img {
    height: 100px; /* Adjust the height as needed */
    width: auto;
    max-height: 100%; /* Maintain aspect ratio */
}


header {
    background: #0e76a8; /* Dark blue background */
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

h1, h2 {
    margin: 0.5rem 0;
}

section {
    padding: 1rem;
    margin: 1rem 0;
}

ul {
    list-style: none;
    padding: 0;
}

ul li a {
    text-decoration: none;
    color: #fff; /* White text for links */
    background-color: #0e76a8; /* Dark blue background for links */
    padding: 0.5rem;
    display: inline-block;
    margin: 0.5rem 0;
    border-radius: 5px; /* Adding rounded corners */
}

ul li a:hover {
    background-color: #0056b3; /* Slightly darker blue on hover */
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }
}
