/* styles.css */

/* Header styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: lavender;
  height: 70px;
}
.logo-left {
 float: left;
 margin-left: 10px;
}
.logo-left img {
  width: 90px;
  height: 110px;
}
/* .logo-right {
 float: right;
 margin-right: 10px;
}

.logo-right img {
 width: 150px;
 height: auto;
} */

nav {
  list-style: initial;
  margin: auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

nav li {
  margin-right: 20px;
  /* list-style-type: none; */

}

nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 25px;
}
nav ul {
 list-style-type: none;
 display: contents;
 margin: 0;
 padding: 0;
 overflow: hidden;
}
nav a.active {
 background-color: #4CAF50; /* Example: a green background for the active link */
 color: white; /* White text for better contrast */
 padding: 10px 15px;
 border-radius: 5px;
}

nav a:hover {
 background-color: #ddd; /* Optional hover effect */
 color: black;
}

 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3, p {
    text-align: center;
}

img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}