body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #99E1D9;
    color: #333;
}
.nav-bar {
    background-color: #279AF1;
   
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    border-radius: 10px;
}
.nav-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-bar ul li {
    display: inline;
    margin: 0 15px;
}

.nav-bar ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-bar ul li a:hover {
    text-decoration: underline;
}

/* Header */
h1 {
    text-align: center;
    color: #0073e6;
    margin-top: 20px;
}

/* Main Content */
main {
    width: 80%;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #0073e6;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #279AF1;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
}
.header-logo img {
    height: 50px;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: auto;
}
    
  
  


  
  
  