/* Sidebar style */
.sidebar {
    height: 30%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #111; 
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    color: white;
}

.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 23px;
    color: white;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

/* Button to close sidebar */
.close-btn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    background: none;
    color: white;
    border: none;
}

/* Style for the main content */
#main-content {
    margin-left: 0;
    transition: margin-left 0.5s;
    padding: 20px;
}

.open-btn {
    font-size: 15px;
    background-color: #111;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    position: absolute;
    top: 20px;
    left: 20px;
}

/* When sidebar is open, shift the main content */
.open .sidebar {
    width: 250px;
}

.open #main-content {
    margin-left: 250px;
}
h1 {
 text-align: center;
    color: black;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

 


}
body, html {
  margin: 0;
  padding: 0;
  height: 100%; /* Make sure body takes full height */
  font-family: serif;
}

.split-container {
  display: flex;
  height: 100vh; /* Full viewport height */
}

.left-side, .right-side {
  flex: 1; /* Each side takes up equal space */
  padding: 20px; 
  box-sizing: border-box;
}

.left-side {
  background-color: #f0f0f0;
   
}

.right-side {
  background-color: #7b99fc;   
}



.banner {
  background-color: #c3d84f; /* Green background */
  color: white;
  text-align: center;
  padding: 10px 0; /* Vertical padding of 40px, no horizontal padding */
  width: 100%; /* Make the banner stretch across the entire width */
}

slide-track {
  display: flex;
  width: calc(100vw * 6);
  animation: scroll 40s linear infinite;
}



.image-container {
  max-width: 100%;
  max-height: 400px; /* or another value that fits your layout */
  overflow: hidden;
  padding: 10px;
}



