body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Top bar container */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1f2422; /* dark background */
    padding: 0.5rem 2rem;
    height: 60px;
}

.left-group {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.logo img {
    height: 45px; /* adjust size */
}

/* Navigation links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #69c; /* hover effect */
}

.center-content {
    width: 100%;
    height: calc(100vh - 60px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.center-content img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

