:root {
    --primary-color: #006769;
    /* Blue */
    --secondary-color: #40A578;
    /* Green */
    --background-color: #ffffff;
    /* Light Gray */
    --text-color: #ffffff;
    /* Dark Gray */
}
/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Background container style */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25; /* Adjust the opacity as needed */
    z-index: -1; /* Ensure it is behind the photos */
    /* background-color: #ffff; */
}

/* Navbar style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Adjust the height as needed */
    background-color: rgba(255, 255, 255); /* White with slight transparency */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for better visibility */
    z-index: 50; /* Ensure it is above the background */
    padding: 2px;
    padding-top: 10px;
    /* padding: 2px; */
    overflow: hidden;
}

.navbar {
height: auto;
}
.navbar img {
    width: 60px;
    height: 50px;
    margin: 0 10px;
}
/* Common styles for the fixed photos */
.fixed-photo {
    width: 60px; /* Adjust size as needed */
    height: auto; /* Maintains aspect ratio */
}

/* Specific styles for the left photo */
.left-photo {
    margin-left: 10px; /* Distance from the left side of the screen */
}

/* Specific styles for the right photo */
.right-photo {
    margin-right: 10px; /* Distance from the right side of the screen */
}


/* Responsive adjustments */
@media (max-width: 600px) {
   
    .navbar {
        height: 60px; /* Further adjust navbar height on very small screens */
    }
}



/* Media queries for responsiveness */
@media (max-width: 768px) {
    .fixed-photo {
        width: 50px; /* Smaller photo size on smaller screens */
    }

    .navbar {
        height: 60px; /* Further adjust navbar height on very small screens */
    }
   }

@media (max-width: 480px) {
    .fixed-photo {
        width: 42px; /* Even smaller photo size for very small screens */
    }

    .navbar {
        height: 60px; /* Further adjust navbar height on very small screens */
    }

}
