body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #333;
}

.navbar {
    background-color: #ffffff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
}

.logo img {
    height: 100px;
    width: 300px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: rgb(34, 33, 33);
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    color: #d1e8ff;
}

main {
    text-align: center;
}

.admin-login-button{
    background-color: blue;
    border: none;
    border-radius: 5px;
    color: white;
    padding: 10px 18px;
    cursor: pointer;
    /* font-size: 1.1rem; */
}


/* for footer  */


.site-footer {
    background-color: #222;
    color: #ccc;
    padding: 40px 20px 20px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1 1 250px;
    margin: 10px;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-section p,
.footer-section li {
    margin: 5px 0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 20px;
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}
