
body {
    margin: 0;
    font-family: Arial, sans-serif;
}


.header-strip {
    background-color: #ffffff;
    color: white;
    padding: 10px 20px;
    text-align: left;
}

.header-strip a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 20px;
}

.navbar{
    background-color: #006161;
    display: flex;
    justify-content: space-around;
    padding: 25px 25px;
}

.navbar a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 14px 20px;
    text-align: center;
    font-size: 18px;
}

.navbar a:hover {
    background-color: #007e7e;
    color: rgb(236, 236, 236);
}

.navbar nav{
    display: flex;
}
.navbar nav li{
    margin: 0px 15px;
    list-style: none;
}
.navbar nav li a{
    text-decoration: none;
    color: black;
}
.btnn{
    display: none;
}
button{
    cursor: pointer;
}
#sidebar{
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #006161;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation-duration: 0.5s;
}

#sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    height: 100%;
}

#sidebar nav li {
    list-style: none;
    padding: 25px 25px;
}

#sidebar nav a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

@keyframes slideIn {
    from {
        right: -100%;
    }
    to {
        right: 0;
    }
}

@keyframes slideOut {
    from {
        right: 0;
    }
    to {
        right: -100%;
    }
}

@media (max-width: 900px) {
    .navbar nav {
        display: none;
    }

    .btnn {
        display: block;
    }
}

.logo {
    text-align: left; 
    padding-left: 5px; 
}

.logo img {
    width: 300px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0; 
}


